Collaborators: Xiner, Norman, Jack

Part 1

Question 1 - Boosting

Part 1

Q0
####################################
##### Loading libraries & data #####
####################################
library(tidyverse)
package <U+393C><U+3E31>tidyverse<U+393C><U+3E32> was built under R version 3.5.3-- Attaching packages --------------------------------------- tidyverse 1.3.0 --
v ggplot2 3.3.0     v purrr   0.3.3
v tibble  3.0.0     v dplyr   0.8.5
v tidyr   1.0.2     v stringr 1.4.0
v readr   1.3.1     v forcats 0.5.0
package <U+393C><U+3E31>ggplot2<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>tibble<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>tidyr<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>readr<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>purrr<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>dplyr<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>stringr<U+393C><U+3E32> was built under R version 3.5.3package <U+393C><U+3E31>forcats<U+393C><U+3E32> was built under R version 3.5.3-- Conflicts ------------------------------------------ tidyverse_conflicts() --
x dplyr::filter() masks stats::filter()
x dplyr::lag()    masks stats::lag()
library(splines)
library(rpart)
package <U+393C><U+3E31>rpart<U+393C><U+3E32> was built under R version 3.5.3
# Generating sample data
n=300
set.seed(1)
u=sort(runif(n)*5*pi)
y = sin(u)+rnorm(n)/4
df = data.frame(x=u,y=y)
# Setting up parameters
v=.05 
runboost <- function(v){
    number_of_weak_learners = 100
    number_of_knots_split = 6
    polynomial_degree = 2
    
    # Fit round 1
    fit=rpart(y~bs(x,degree=2,df=6),data=df)
    yp = predict(fit,newdata=df)
    df$yr = df$y - v*yp
    YP = v*yp
    list_of_weak_learners = list(fit)
    
    #################################
    ##### Boosting with Splines #####
    #################################
    for(t in 2:number_of_weak_learners){
      # Fit linear spline
      fit = rpart(yr ~ bs(x, 
                       degree=polynomial_degree,
                       df=number_of_knots_split),data=df) 
      
      # Generate new prediction
      yp=predict(fit,newdata=df)
      
      # Update residuals
      df$yr=df$yr - v*yp
      
      # Bind to new data point
      YP = cbind(YP,v*yp)
      
      # Store fitted model in list
      list_of_weak_learners[[t]] = fit
    }
    
    
    ##############################################
    ##### Getting predictions for each boost #####
    ##############################################
    for (i in 1:number_of_weak_learners){
      # Calculating performance of first i weak_learners
      
      # Summing weak learner residuals
      if(i==1){yp_i = YP[,1:i]
      }else{yp_i=apply(YP[,1:i],1,sum) #<- strong learner
      }
      
      # Binds new cols
      col_name = paste0('yp_',i)
      df = df %>% bind_cols(yp=yp_i)
    }
    
    # Re-arrange sequences to get pseudo residuals 
    plot_wl = df %>% select(-y,-yr) %>% 
      pivot_longer(cols = starts_with("yp")) %>% 
      mutate(learner = str_match(name,"[0-9]+")) %>% 
      mutate(learner = as.integer(ifelse(is.na(learner),0,learner)))
    
    # Plot final learner
    final_learner = plot_wl %>% filter(learner == (number_of_weak_learners-1))
    
    # Plot progression of learner
    plot1 <- ggplot() + 
      # Visualizing all learners
      geom_line(aes(x = x, y = value, group = learner, color =learner),
                data = plot_wl,alpha=0.5) +
      # Final learner
      geom_line(aes(x = x, y = value, group = learner, color =learner),
                data = final_learner,alpha=0.5,color = 'firebrick1',size = 2)  +
      geom_point(aes(x = x, y= y),data = df)+ # true values
      theme_minimal()
    print(plot1)
    
    ##################################
    ##### Predicting on new data #####
    ##################################
    
    new_data = tibble(x = sample(seq(0,4*3,0.001),size = 100,replace = T))
    
    for (i in 1:number_of_weak_learners){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,new_data)}
      else{pred =pred + v*predict(weak_learner_i,new_data)}
      
      if(i==number_of_weak_learners){
        new_data = new_data %>% bind_cols(yp=pred)
      }
    }
    
    ###################################################
    ##### Visualizing boosted vs predicted models #####
    ##################################################
    plot2 <- ggplot(aes(x=x, y=y),data = tibble(x = df$x, y = df$y))+
      xlab('')+ylab('')+ 
      geom_point()+
      # Final learner from training data
      geom_line(aes(x = x, y = value, group = learner, color =learner), data = final_learner , color = 'firebrick1',size = 2)  +
      # True value
      geom_line(aes(x=x,y=y),data = tibble(x = u,y = sin(u)), color='black',linetype = 'dashed')+ # true values
      # Prediction on new data
      geom_line(aes(x=x,y=yp),data = new_data, color='blue',size = 2,alpha = 0.5)+ # predicted values
      theme_minimal()
    print(plot2)
}
runboost(0.05)

Q1
runboost(0.01)

runboost(0.05)

runboost(0.125)

It looks like increasing the learning parameter from 0.01 to 0.05 increased the accuracy of the fit significantly, but further increases in the learning parameter did not lead to a better fit.

Q2
Part A
runboost <- function(v){
    number_of_knots_split = 6
    polynomial_degree = 2
    
    
    # Fit round 1
    fit=rpart(y~bs(x,degree=2,df=6),data=df)
    yp = predict(fit,newdata=df)
    df$yr = df$y - v*yp
    YP = v*yp
    list_of_weak_learners = list(fit)
    
    #################################
    ##### Boosting with Splines #####
    #################################
    mean_vyp = mean(YP)
    t=1
    while(mean_vyp > 0.0001){
      t=t+1
      # Fit linear spline
      fit = rpart(yr ~ bs(x, 
                       degree=polynomial_degree,
                       df=number_of_knots_split),data=df) 
      
      # Generate new prediction
      yp=predict(fit,newdata=df)
      
      # Update residuals
      df$yr=df$yr - v*yp
      
      # Bind to new data point
      YP = cbind(YP,v*yp)
      
      # Store fitted model in list
      list_of_weak_learners[[t]] = fit
      mean_vyp = mean(v*yp)
    }
    print(t)
    ##############################################
    ##### Getting predictions for each boost #####
    ##############################################
    for (i in 1:t){
      # Calculating performance of first i weak_learners
      
      # Summing weak learner residuals
      if(i==1){yp_i = YP[,1:i]
      }else{yp_i=apply(YP[,1:i],1,sum) #<- strong learner
      }
      
      # Binds new cols
      col_name = paste0('yp_',i)
      df = df %>% bind_cols(yp=yp_i)
    }
    
    # Re-arrange sequences to get pseudo residuals 
    plot_wl = df %>% select(-y,-yr) %>% 
      pivot_longer(cols = starts_with("yp")) %>% 
      mutate(learner = str_match(name,"[0-9]+")) %>% 
      mutate(learner = as.integer(ifelse(is.na(learner),0,learner)))
    
    # Plot final learner
    final_learner = plot_wl %>% filter(learner == (t-1))
    
    # Plot progression of learner
    plot1 <- ggplot() + 
      # Visualizing all learners
      geom_line(aes(x = x, y = value, group = learner, color =learner),
                data = plot_wl,alpha=0.5) +
      # Final learner
      geom_line(aes(x = x, y = value, group = learner, color =learner),
                data = final_learner,alpha=0.5,color = 'firebrick1',size = 2)  +
      geom_point(aes(x = x, y= y),data = df)+ # true values
      theme_minimal()
    print(plot1)
    
    
    ##################################
    ##### Predicting on new data #####
    ##################################
    
    new_data = tibble(x = sample(seq(0,4*3,0.001),size = 100,replace = T))
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,new_data)}
      else{pred =pred + v*predict(weak_learner_i,new_data)}
      
      if(i==t){
        new_data = new_data %>% bind_cols(yp=pred)
      }
    }
    
    ###################################################
    ##### Visualizing boosted vs predicted models #####
    ##################################################
    plot2 <- ggplot(aes(x=x, y=y),data = tibble(x = df$x, y = df$y))+
      xlab('')+ylab('')+ 
      geom_point()+
      # Final learner from training data
      geom_line(aes(x = x, y = value, group = learner, color =learner), data = final_learner , color = 'firebrick1',size = 2)  +
      # True value
      geom_line(aes(x=x,y=y),data = tibble(x = u,y = sin(u)), color='black',linetype = 'dashed')+ # true values
      # Prediction on new data
      geom_line(aes(x=x,y=yp),data = new_data, color='blue',size = 2,alpha = 0.5)+ # predicted values
      theme_minimal()
    print(plot2)
}
runboost(0.05)
[1] 82

Part B

There were 82 trees for this run.

Part C
RMSE = function(fit, obs){
  sqrt(mean((fit - obs)^2))
}
runboost <- function(v){
    number_of_knots_split = 6
    polynomial_degree = 2
    
    assignment <- sample(1:3, size = nrow(df), prob=c(0.70, 0.15, 0.15), replace = TRUE)
    df_train <- df[assignment == 1, ] 
    df_valid <- df[assignment == 2, ]
    df_test <- df[assignment == 3, ]
    
    # Fit round 1
    fit=rpart(y~bs(x,degree=2,df=6),data=df_train)
    yp = predict(fit,newdata=df_train)
    df_train$yr = df_train$y - v*yp
    YP = v*yp
    list_of_weak_learners = list(fit)
    
    #################################
    ##### Boosting with Splines #####
    #################################
    mean_vyp = mean(YP)
    t=1
    while(mean_vyp > 0.0001){
      t=t+1
      # Fit linear spline
      fit = rpart(yr ~ bs(x, 
                       degree=polynomial_degree,
                       df=number_of_knots_split),data=df_train) 
      
      # Generate new prediction
      yp=predict(fit,newdata=df_train)
      
      # Update residuals
      df_train$yr=df_train$yr - v*yp
      
      # Bind to new data point
      YP = cbind(YP,v*yp)
      
      # Store fitted model in list
      list_of_weak_learners[[t]] = fit
      mean_vyp = mean(v*yp)
    }
    print(t)
    ##############################################
    ##### Getting predictions for each boost #####
    ##############################################
    for (i in 1:t){
      # Calculating performance of first i weak_learners
      
      # Summing weak learner residuals
      if(i==1){yp_i = YP[,1:i]
      }else{yp_i=apply(YP[,1:i],1,sum) #<- strong learner
      }
      
      # Binds new cols
      col_name = paste0('yp_',i)
      df_train = df_train %>% bind_cols(yp=yp_i)
    }
    
    # Re-arrange sequences to get pseudo residuals 
    plot_wl = df_train %>% select(-y,-yr) %>% 
      pivot_longer(cols = starts_with("yp")) %>% 
      mutate(learner = str_match(name,"[0-9]+")) %>% 
      mutate(learner = as.integer(ifelse(is.na(learner),0,learner)))
    
    # Plot final learner
    final_learner = plot_wl %>% filter(learner == (t-1))
    
    # Plot progression of learner
    plot1 <- ggplot() + 
      # Visualizing all learners
      geom_line(aes(x = x, y = value, group = learner, color =learner),
                data = plot_wl,alpha=0.5) +
      # Final learner
      geom_line(aes(x = x, y = value, group = learner, color =learner),
                data = final_learner,alpha=0.5,color = 'firebrick1',size = 2)  +
      geom_point(aes(x = x, y= y),data = df_train)+ # true values
      theme_minimal()
    print(plot1)
    
    
    ##################################
    ##### Predicting on new data, test, validation set #####
    ##################################
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,df_valid)}
      else{pred =pred + v*predict(weak_learner_i,df_valid)}
      
      if(i==t){
        df_valid = df_valid %>% bind_cols(yp=pred)
      }
    }
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,df_test)}
      else{pred =pred + v*predict(weak_learner_i,df_test)}
      
      if(i==t){
        df_test = df_test %>% bind_cols(yp=pred)
      }
    }
    
    new_data = tibble(x = sample(seq(0,4*3,0.001),size = 100,replace = T))
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,new_data)}
      else{pred =pred + v*predict(weak_learner_i,new_data)}
      
      if(i==t){
        new_data = new_data %>% bind_cols(yp=pred)
      }
    }
    print("train RMSE:")
    print(RMSE(df_train$yp, df_train$y))
    print("validation RMSE:")
    print(RMSE(df_valid$yp, df_valid$y))
    print("test RMSE:")
    print(RMSE(df_test$yp, df_test$y))
    ###################################################
    ##### Visualizing boosted vs predicted models #####
    ##################################################
    plot2 <- ggplot(aes(x=x, y=y),data = tibble(x = df$x, y = df$y))+
      xlab('')+ylab('')+ 
      geom_point()+
      # Final learner from training data
      geom_line(aes(x = x, y = value, group = learner, color =learner), data = final_learner , color = 'firebrick1',size = 2)  +
      # True value
      geom_line(aes(x=x,y=y),data = tibble(x = u,y = sin(u)), color='black',linetype = 'dashed')+ # true values
      # Prediction on new data
      geom_line(aes(x=x,y=yp),data = new_data, color='blue',size = 2,alpha = 0.5)+ # predicted (test) values
      geom_line(aes(x=x,y=yp),data = df_valid, color='green',size = 2,alpha = 0.5)+ #validation set
      theme_minimal()
    print(plot2)
}
runboost(0.05)
[1] 76
[1] "train RMSE:"
[1] 0.7362656
[1] "validation RMSE:"
[1] 0.3094331
[1] "test RMSE:"
[1] 0.2989204

Q3
v=0.05
out <- data.frame(0,0,0,0,0,0)
colnames(out) <- c("mins", "cp", "maxd", "train", "test", "valid")

mins <- 10:30
cp <- seq(0.01, 0.1, 0.01)
maxd <- 20:40

for (m in mins){
  for (c in cp){ 
    for (md in maxd){
    row=1
    number_of_knots_split = 6
    polynomial_degree = 2
    
    assignment <- sample(1:3, size = nrow(df), prob=c(0.70, 0.15, 0.15), replace = TRUE)

    df_train <- df[assignment == 1, ] 
    df_valid <- df[assignment == 2, ]
    df_test <- df[assignment == 3, ]
    
    # Fit round 1
    fit=rpart(y~bs(x,degree=2,df=6),data=df_train, control = list(
      minsplit = m, minbucket = round(m/3), cp = c, maxdepth = md))
    yp = predict(fit,newdata=df_train)
    df_train$yr = df_train$y - v*yp
    YP = v*yp
    list_of_weak_learners = list(fit)
    
    #################################
    ##### Boosting with Splines #####
    #################################
    mean_vyp = mean(YP)
    t=1
    while(mean_vyp > 0.0001){
      t=t+1
      # Fit linear spline
      fit = rpart(yr ~ bs(x, 
                       degree=polynomial_degree,
                       df=number_of_knots_split),data=df_train) 
      
      # Generate new prediction
      yp=predict(fit,newdata=df_train)
      
      # Update residuals
      df_train$yr=df_train$yr - v*yp
      
      # Bind to new data point
      YP = cbind(YP,v*yp)
      
      # Store fitted model in list
      list_of_weak_learners[[t]] = fit
      mean_vyp = mean(v*yp)
    }
    print(t)
    ##############################################
    ##### Getting predictions for each boost #####
    ##############################################
    for (i in 1:t){
      # Calculating performance of first i weak_learners
      
      # Summing weak learner residuals
      if(i==1){yp_i = YP[,1:i]
      }else{yp_i=apply(YP[,1:i],1,sum) #<- strong learner
      }
      
      # Binds new cols
      col_name = paste0('yp_',i)
      df_train = df_train %>% bind_cols(yp=yp_i)
    }
    
    
    
    ##################################
    ##### Predicting on new data, test, validation set #####
    ##################################
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,df_valid)}
      else{pred =pred + v*predict(weak_learner_i,df_valid)}
      
      if(i==t){
        df_valid = df_valid %>% bind_cols(yp=pred)
      }
    }
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,df_test)}
      else{pred =pred + v*predict(weak_learner_i,df_test)}
      
      if(i==t){
        df_test = df_test %>% bind_cols(yp=pred)
      }
    }
    
    new_data = tibble(x = sample(seq(0,4*3,0.001),size = 100,replace = T))
    
    for (i in 1:t){
      weak_learner_i = list_of_weak_learners[[i]]
      
      if (i==1){pred = v*predict(weak_learner_i,new_data)}
      else{pred =pred + v*predict(weak_learner_i,new_data)}
      
      if(i==t){
        new_data = new_data %>% bind_cols(yp=pred)
      }
    }
    
    out[row,] <- c(m, c, md, RMSE(df_train$yp, df_train$y), RMSE(df_test$yp, df_test$y), RMSE(df_valid$yp, df_valid$y))
    row=row+1
    }
  }
}

Part 2

Question 2 - TSNE

Part 1

A

In most respects, the distance between points in tSNE does not matter, but in a few cases it can be meaningful. The distance is a low dimensional (2D) representation of points that initially exist in a higher dimensional space, and does reflect a transformation of these points. However, tSNE has a tendency to expand clusters that are initially dense, while contracting clusters that are initially expansive. As a result, distances between points in a cluster are meaningless, because they reflect a notion of regional and global distances depending on the level of perplexity applied. Distances between clusters tend to be more meaningful at higher levels of perplexity, because high levels of perplexity better preserve global distances between clusters.

B

Perplexity is a value that usually ranges between 5 and 50 and refers to the balance between local and global differences in the data, somewhat like setting the number of nearest neighbors we can expect each point to have. Low levels of perplexity emphasize local variations, while high levels of perplexity emphasize differences between larger clusters of data. The paper reccommends examining plots of a few different perplexity values for a given set of data, and making sure that the perplexity value is smaller than the number of points, otherwise we risk unexpected behavior from the algorithm.

C

The number of steps is important in ensuring that the representation is stable. The paper states that there is no one number of steps that lead to stability, but that there are some warning signs that the representation is unstable. For one, if you see see pointlike or pinched shapes as the clusters, it is possible that not enough steps have been run to achieve convergence.

D

In order to uncover topological information in an embedding like tSNE, we may need to make multiple plots at different perplexity levels. This is because depending on the number of points and the density of local and global clusters, a different perplexity value may be needed to uncover patterns in the original data. Producing only one graph at a specific perplexity may lead us to make false conclusions about the nature of the higher dimensional data, particularly when we are unable to graph it, or know exactly how it inhabits its higher dimensional space.

Part 2

library(tidyverse)
library(Rtsne)
package <U+393C><U+3E31>Rtsne<U+393C><U+3E32> was built under R version 3.5.3
library(RColorBrewer)
# Get MNIST data
mnist_raw <- read_csv("https://pjreddie.com/media/files/mnist_train.csv", col_names = FALSE)
Parsed with column specification:
cols(
  .default = col_double()
)
See spec(...) for full column specifications.

|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    1 MB
|==                                                                                                                              |   1%    2 MB
|==                                                                                                                              |   1%    2 MB
|==                                                                                                                              |   1%    2 MB
|==                                                                                                                              |   1%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|==                                                                                                                              |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    2 MB
|===                                                                                                                             |   2%    3 MB
|===                                                                                                                             |   2%    3 MB
|===                                                                                                                             |   2%    3 MB
|===                                                                                                                             |   2%    3 MB
|===                                                                                                                             |   2%    3 MB
|===                                                                                                                             |   2%    3 MB
|===                                                                                                                             |   3%    3 MB
|===                                                                                                                             |   3%    3 MB
|===                                                                                                                             |   3%    3 MB
|===                                                                                                                             |   3%    3 MB
|===                                                                                                                             |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    3 MB
|====                                                                                                                            |   3%    4 MB
|====                                                                                                                            |   3%    4 MB
|=====                                                                                                                           |   3%    4 MB
|=====                                                                                                                           |   3%    4 MB
|=====                                                                                                                           |   3%    4 MB
|=====                                                                                                                           |   3%    4 MB
|=====                                                                                                                           |   3%    4 MB
|=====                                                                                                                           |   3%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|=====                                                                                                                           |   4%    4 MB
|======                                                                                                                          |   4%    4 MB
|======                                                                                                                          |   4%    4 MB
|======                                                                                                                          |   4%    4 MB
|======                                                                                                                          |   4%    4 MB
|======                                                                                                                          |   4%    4 MB
|======                                                                                                                          |   4%    4 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   4%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|======                                                                                                                          |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    5 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   5%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|=======                                                                                                                         |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    6 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|========                                                                                                                        |   6%    7 MB
|=========                                                                                                                       |   6%    7 MB
|=========                                                                                                                       |   6%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    7 MB
|=========                                                                                                                       |   7%    8 MB
|=========                                                                                                                       |   7%    8 MB
|=========                                                                                                                       |   7%    8 MB
|=========                                                                                                                       |   7%    8 MB
|=========                                                                                                                       |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   7%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|==========                                                                                                                      |   8%    8 MB
|===========                                                                                                                     |   8%    8 MB
|===========                                                                                                                     |   8%    8 MB
|===========                                                                                                                     |   8%    8 MB
|===========                                                                                                                     |   8%    8 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   8%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|===========                                                                                                                     |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%    9 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |   9%   10 MB
|============                                                                                                                    |  10%   10 MB
|============                                                                                                                    |  10%   10 MB
|============                                                                                                                    |  10%   10 MB
|============                                                                                                                    |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   10 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|=============                                                                                                                   |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  10%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   11 MB
|==============                                                                                                                  |  11%   12 MB
|==============                                                                                                                  |  11%   12 MB
|==============                                                                                                                  |  11%   12 MB
|==============                                                                                                                  |  11%   12 MB
|==============                                                                                                                  |  11%   12 MB
|==============                                                                                                                  |  11%   12 MB
|==============                                                                                                                  |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  11%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|===============                                                                                                                 |  12%   12 MB
|================                                                                                                                |  12%   12 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  12%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|================                                                                                                                |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   13 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|=================                                                                                                               |  13%   14 MB
|==================                                                                                                              |  13%   14 MB
|==================                                                                                                              |  13%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   14 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|==================                                                                                                              |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  14%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   15 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|===================                                                                                                             |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  15%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   16 MB
|====================                                                                                                            |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  16%   17 MB
|=====================                                                                                                           |  17%   17 MB
|=====================                                                                                                           |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   17 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|======================                                                                                                          |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  17%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   18 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|=======================                                                                                                         |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  18%   19 MB
|========================                                                                                                        |  19%   19 MB
|========================                                                                                                        |  19%   19 MB
|========================                                                                                                        |  19%   19 MB
|========================                                                                                                        |  19%   19 MB
|========================                                                                                                        |  19%   19 MB
|========================                                                                                                        |  19%   19 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|========================                                                                                                        |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  19%   20 MB
|=========================                                                                                                       |  20%   20 MB
|=========================                                                                                                       |  20%   20 MB
|=========================                                                                                                       |  20%   20 MB
|=========================                                                                                                       |  20%   20 MB
|=========================                                                                                                       |  20%   21 MB
|=========================                                                                                                       |  20%   21 MB
|=========================                                                                                                       |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|==========================                                                                                                      |  20%   21 MB
|===========================                                                                                                     |  20%   21 MB
|===========================                                                                                                     |  20%   21 MB
|===========================                                                                                                     |  20%   21 MB
|===========================                                                                                                     |  21%   21 MB
|===========================                                                                                                     |  21%   21 MB
|===========================                                                                                                     |  21%   21 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|===========================                                                                                                     |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  21%   22 MB
|============================                                                                                                    |  22%   22 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|============================                                                                                                    |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   23 MB
|=============================                                                                                                   |  22%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|=============================                                                                                                   |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   24 MB
|==============================                                                                                                  |  23%   25 MB
|==============================                                                                                                  |  23%   25 MB
|==============================                                                                                                  |  23%   25 MB
|==============================                                                                                                  |  23%   25 MB
|==============================                                                                                                  |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|===============================                                                                                                 |  24%   25 MB
|================================                                                                                                |  24%   25 MB
|================================                                                                                                |  24%   25 MB
|================================                                                                                                |  24%   25 MB
|================================                                                                                                |  24%   25 MB
|================================                                                                                                |  24%   26 MB
|================================                                                                                                |  24%   26 MB
|================================                                                                                                |  24%   26 MB
|================================                                                                                                |  24%   26 MB
|================================                                                                                                |  24%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|================================                                                                                                |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   26 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  25%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|=================================                                                                                               |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   27 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  26%   28 MB
|==================================                                                                                              |  27%   28 MB
|==================================                                                                                              |  27%   28 MB
|==================================                                                                                              |  27%   28 MB
|==================================                                                                                              |  27%   28 MB
|==================================                                                                                              |  27%   28 MB
|==================================                                                                                              |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   28 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|===================================                                                                                             |  27%   29 MB
|====================================                                                                                            |  27%   29 MB
|====================================                                                                                            |  27%   29 MB
|====================================                                                                                            |  27%   29 MB
|====================================                                                                                            |  27%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|====================================                                                                                            |  28%   29 MB
|=====================================                                                                                           |  28%   29 MB
|=====================================                                                                                           |  28%   29 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  28%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|=====================================                                                                                           |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   30 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  29%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|======================================                                                                                          |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   31 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|=======================================                                                                                         |  30%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   32 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|========================================                                                                                        |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  31%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   33 MB
|=========================================                                                                                       |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  32%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|==========================================                                                                                      |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   34 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  33%   35 MB
|===========================================                                                                                     |  34%   35 MB
|===========================================                                                                                     |  34%   35 MB
|===========================================                                                                                     |  34%   35 MB
|===========================================                                                                                     |  34%   35 MB
|===========================================                                                                                     |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   35 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|============================================                                                                                    |  34%   36 MB
|=============================================                                                                                   |  34%   36 MB
|=============================================                                                                                   |  34%   36 MB
|=============================================                                                                                   |  34%   36 MB
|=============================================                                                                                   |  34%   36 MB
|=============================================                                                                                   |  34%   36 MB
|=============================================                                                                                   |  34%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   36 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|=============================================                                                                                   |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  35%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   37 MB
|==============================================                                                                                  |  36%   38 MB
|==============================================                                                                                  |  36%   38 MB
|==============================================                                                                                  |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  36%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|===============================================                                                                                 |  37%   38 MB
|================================================                                                                                |  37%   38 MB
|================================================                                                                                |  37%   38 MB
|================================================                                                                                |  37%   38 MB
|================================================                                                                                |  37%   38 MB
|================================================                                                                                |  37%   38 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|================================================                                                                                |  37%   39 MB
|=================================================                                                                               |  37%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   39 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|=================================================                                                                               |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  38%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   40 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|==================================================                                                                              |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  39%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   41 MB
|===================================================                                                                             |  40%   42 MB
|===================================================                                                                             |  40%   42 MB
|===================================================                                                                             |  40%   42 MB
|===================================================                                                                             |  40%   42 MB
|===================================================                                                                             |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  40%   42 MB
|====================================================                                                                            |  41%   42 MB
|====================================================                                                                            |  41%   42 MB
|====================================================                                                                            |  41%   42 MB
|====================================================                                                                            |  41%   42 MB
|=====================================================                                                                           |  41%   42 MB
|=====================================================                                                                           |  41%   42 MB
|=====================================================                                                                           |  41%   42 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|=====================================================                                                                           |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  41%   43 MB
|======================================================                                                                          |  42%   43 MB
|======================================================                                                                          |  42%   43 MB
|======================================================                                                                          |  42%   43 MB
|======================================================                                                                          |  42%   43 MB
|======================================================                                                                          |  42%   43 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|======================================================                                                                          |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  42%   44 MB
|=======================================================                                                                         |  43%   44 MB
|=======================================================                                                                         |  43%   44 MB
|=======================================================                                                                         |  43%   44 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|=======================================================                                                                         |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  43%   45 MB
|========================================================                                                                        |  44%   45 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|========================================================                                                                        |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|=========================================================                                                                       |  44%   46 MB
|==========================================================                                                                      |  44%   47 MB
|==========================================================                                                                      |  44%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|==========================================================                                                                      |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   47 MB
|===========================================================                                                                     |  45%   48 MB
|===========================================================                                                                     |  45%   48 MB
|===========================================================                                                                     |  45%   48 MB
|===========================================================                                                                     |  45%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|===========================================================                                                                     |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   48 MB
|============================================================                                                                    |  46%   49 MB
|============================================================                                                                    |  46%   49 MB
|============================================================                                                                    |  46%   49 MB
|============================================================                                                                    |  46%   49 MB
|============================================================                                                                    |  46%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|============================================================                                                                    |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   49 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  47%   50 MB
|=============================================================                                                                   |  48%   50 MB
|=============================================================                                                                   |  48%   50 MB
|=============================================================                                                                   |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   50 MB
|==============================================================                                                                  |  48%   51 MB
|==============================================================                                                                  |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  48%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|===============================================================                                                                 |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   51 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  49%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|================================================================                                                                |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   52 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  50%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|=================================================================                                                               |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   53 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|==================================================================                                                              |  51%   54 MB
|===================================================================                                                             |  51%   54 MB
|===================================================================                                                             |  51%   54 MB
|===================================================================                                                             |  51%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   54 MB
|===================================================================                                                             |  52%   55 MB
|===================================================================                                                             |  52%   55 MB
|===================================================================                                                             |  52%   55 MB
|===================================================================                                                             |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  52%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|====================================================================                                                            |  53%   55 MB
|=====================================================================                                                           |  53%   55 MB
|=====================================================================                                                           |  53%   55 MB
|=====================================================================                                                           |  53%   55 MB
|=====================================================================                                                           |  53%   55 MB
|=====================================================================                                                           |  53%   55 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  53%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|=====================================================================                                                           |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   56 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  54%   57 MB
|======================================================================                                                          |  55%   57 MB
|======================================================================                                                          |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   57 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|=======================================================================                                                         |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  55%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   58 MB
|========================================================================                                                        |  56%   59 MB
|========================================================================                                                        |  56%   59 MB
|========================================================================                                                        |  56%   59 MB
|========================================================================                                                        |  56%   59 MB
|========================================================================                                                        |  56%   59 MB
|========================================================================                                                        |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  56%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|=========================================================================                                                       |  57%   59 MB
|==========================================================================                                                      |  57%   59 MB
|==========================================================================                                                      |  57%   59 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  57%   60 MB
|==========================================================================                                                      |  58%   60 MB
|==========================================================================                                                      |  58%   60 MB
|==========================================================================                                                      |  58%   60 MB
|==========================================================================                                                      |  58%   60 MB
|==========================================================================                                                      |  58%   60 MB
|==========================================================================                                                      |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   60 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|===========================================================================                                                     |  58%   61 MB
|============================================================================                                                    |  58%   61 MB
|============================================================================                                                    |  58%   61 MB
|============================================================================                                                    |  58%   61 MB
|============================================================================                                                    |  58%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   61 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|============================================================================                                                    |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  59%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   62 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|=============================================================================                                                   |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  60%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|==============================================================================                                                  |  61%   63 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  61%   64 MB
|===============================================================================                                                 |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   64 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|================================================================================                                                |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  62%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   65 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|=================================================================================                                               |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  63%   66 MB
|==================================================================================                                              |  64%   66 MB
|==================================================================================                                              |  64%   66 MB
|==================================================================================                                              |  64%   66 MB
|==================================================================================                                              |  64%   66 MB
|==================================================================================                                              |  64%   66 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|==================================================================================                                              |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  64%   67 MB
|===================================================================================                                             |  65%   67 MB
|===================================================================================                                             |  65%   67 MB
|===================================================================================                                             |  65%   67 MB
|===================================================================================                                             |  65%   68 MB
|===================================================================================                                             |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|====================================================================================                                            |  65%   68 MB
|=====================================================================================                                           |  65%   68 MB
|=====================================================================================                                           |  65%   68 MB
|=====================================================================================                                           |  65%   68 MB
|=====================================================================================                                           |  65%   68 MB
|=====================================================================================                                           |  65%   68 MB
|=====================================================================================                                           |  65%   68 MB
|=====================================================================================                                           |  66%   68 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|=====================================================================================                                           |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   69 MB
|======================================================================================                                          |  66%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|======================================================================================                                          |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   70 MB
|=======================================================================================                                         |  67%   71 MB
|=======================================================================================                                         |  67%   71 MB
|=======================================================================================                                         |  67%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|=======================================================================================                                         |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   71 MB
|========================================================================================                                        |  68%   72 MB
|========================================================================================                                        |  68%   72 MB
|========================================================================================                                        |  68%   72 MB
|========================================================================================                                        |  68%   72 MB
|========================================================================================                                        |  68%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|=========================================================================================                                       |  69%   72 MB
|==========================================================================================                                      |  69%   72 MB
|==========================================================================================                                      |  69%   72 MB
|==========================================================================================                                      |  69%   72 MB
|==========================================================================================                                      |  69%   72 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  69%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|==========================================================================================                                      |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   73 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  70%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|===========================================================================================                                     |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   74 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  71%   75 MB
|============================================================================================                                    |  72%   75 MB
|============================================================================================                                    |  72%   75 MB
|============================================================================================                                    |  72%   75 MB
|============================================================================================                                    |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   75 MB
|=============================================================================================                                   |  72%   76 MB
|=============================================================================================                                   |  72%   76 MB
|=============================================================================================                                   |  72%   76 MB
|=============================================================================================                                   |  72%   76 MB
|=============================================================================================                                   |  72%   76 MB
|=============================================================================================                                   |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  72%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|==============================================================================================                                  |  73%   76 MB
|===============================================================================================                                 |  73%   76 MB
|===============================================================================================                                 |  73%   76 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  73%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|===============================================================================================                                 |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   77 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  74%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|================================================================================================                                |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   78 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|=================================================================================================                               |  75%   79 MB
|==================================================================================================                              |  75%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   79 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|==================================================================================================                              |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  76%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|===================================================================================================                             |  77%   80 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  77%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|====================================================================================================                            |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   81 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  78%   82 MB
|=====================================================================================================                           |  79%   82 MB
|=====================================================================================================                           |  79%   82 MB
|=====================================================================================================                           |  79%   82 MB
|=====================================================================================================                           |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   82 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|======================================================================================================                          |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  79%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   83 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|=======================================================================================================                         |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  80%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   84 MB
|========================================================================================================                        |  81%   85 MB
|========================================================================================================                        |  81%   85 MB
|========================================================================================================                        |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  81%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|=========================================================================================================                       |  82%   85 MB
|==========================================================================================================                      |  82%   85 MB
|==========================================================================================================                      |  82%   85 MB
|==========================================================================================================                      |  82%   85 MB
|==========================================================================================================                      |  82%   85 MB
|==========================================================================================================                      |  82%   85 MB
|==========================================================================================================                      |  82%   85 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|==========================================================================================================                      |  82%   86 MB
|===========================================================================================================                     |  82%   86 MB
|===========================================================================================================                     |  82%   86 MB
|===========================================================================================================                     |  82%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   86 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|===========================================================================================================                     |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  83%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   87 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|============================================================================================================                    |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  84%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   88 MB
|=============================================================================================================                   |  85%   89 MB
|=============================================================================================================                   |  85%   89 MB
|=============================================================================================================                   |  85%   89 MB
|=============================================================================================================                   |  85%   89 MB
|=============================================================================================================                   |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  85%   89 MB
|==============================================================================================================                  |  86%   89 MB
|==============================================================================================================                  |  86%   89 MB
|===============================================================================================================                 |  86%   89 MB
|===============================================================================================================                 |  86%   89 MB
|===============================================================================================================                 |  86%   89 MB
|===============================================================================================================                 |  86%   89 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|===============================================================================================================                 |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  86%   90 MB
|================================================================================================================                |  87%   90 MB
|================================================================================================================                |  87%   90 MB
|================================================================================================================                |  87%   90 MB
|================================================================================================================                |  87%   90 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|================================================================================================================                |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  87%   91 MB
|=================================================================================================================               |  88%   91 MB
|=================================================================================================================               |  88%   91 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|=================================================================================================================               |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  88%   92 MB
|==================================================================================================================              |  89%   93 MB
|==================================================================================================================              |  89%   93 MB
|==================================================================================================================              |  89%   93 MB
|==================================================================================================================              |  89%   93 MB
|==================================================================================================================              |  89%   93 MB
|==================================================================================================================              |  89%   93 MB
|==================================================================================================================              |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|===================================================================================================================             |  89%   93 MB
|====================================================================================================================            |  89%   93 MB
|====================================================================================================================            |  89%   94 MB
|====================================================================================================================            |  89%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|====================================================================================================================            |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   94 MB
|=====================================================================================================================           |  90%   95 MB
|=====================================================================================================================           |  90%   95 MB
|=====================================================================================================================           |  90%   95 MB
|=====================================================================================================================           |  90%   95 MB
|=====================================================================================================================           |  90%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|=====================================================================================================================           |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   95 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  91%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|======================================================================================================================          |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   96 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  92%   97 MB
|=======================================================================================================================         |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   97 MB
|========================================================================================================================        |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  93%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|=========================================================================================================================       |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   98 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  94%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|==========================================================================================================================      |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%   99 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  95%  100 MB
|===========================================================================================================================     |  96%  100 MB
|===========================================================================================================================     |  96%  100 MB
|===========================================================================================================================     |  96%  100 MB
|===========================================================================================================================     |  96%  100 MB
|===========================================================================================================================     |  96%  100 MB
|===========================================================================================================================     |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  100 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|============================================================================================================================    |  96%  101 MB
|=============================================================================================================================   |  96%  101 MB
|=============================================================================================================================   |  96%  101 MB
|=============================================================================================================================   |  96%  101 MB
|=============================================================================================================================   |  96%  101 MB
|=============================================================================================================================   |  96%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  101 MB
|=============================================================================================================================   |  97%  102 MB
|=============================================================================================================================   |  97%  102 MB
|=============================================================================================================================   |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  97%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|==============================================================================================================================  |  98%  102 MB
|=============================================================================================================================== |  98%  102 MB
|=============================================================================================================================== |  98%  102 MB
|=============================================================================================================================== |  98%  102 MB
|=============================================================================================================================== |  98%  102 MB
|=============================================================================================================================== |  98%  102 MB
|=============================================================================================================================== |  98%  102 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  98%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|=============================================================================================================================== |  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  103 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|================================================================================================================================|  99%  104 MB
|=================================================================================================================================| 100%  104 MB
|=================================================================================================================================| 100%  104 MB
# What is the dimension of the data set
dim(mnist_raw) # first column is the value, the rest are the pixels
[1] 60000   785
# Rearranging the data
pixels_gathered <- mnist_raw %>% head(10000) %>%
  rename(label = X1) %>%
  mutate(instance = row_number()) %>%
  gather(pixel, value, -label, -instance) %>%
  extract(pixel, "pixel", "(\\d+)", convert = TRUE) %>%
  mutate(pixel = pixel - 2,
         x = pixel %% 28,
         y = 28 - pixel %/% 28)
first_10k_samples =  mnist_raw[1:10000,-1] #%>% as.matrix()
first_10k_samples_labels =  mnist_raw[1:10000,1] %>% unlist(use.names=F)
colors = brewer.pal(10, 'Spectral')
# Visualizing the data
theme_set(theme_light())
pixels_gathered %>%
  filter(instance <= 12) %>%
  ggplot(aes(x, y, fill = value)) +
  geom_tile() +
  facet_grid(label~ instance )

Part A
##############################################
##### Visualizing the PCA decomposition  #####
##############################################
pca = princomp(first_10k_samples)$scores[,1:2]
pca_plot = tibble(x = pca[,1], y =pca[,2], labels = as.character(first_10k_samples_labels))
ggplot(aes(x = x, y=y,label = labels, color = labels), data = pca_plot) + geom_text() + 
  xlab('PCA component 1') +ylab('PCA component 2')

Part B
##############################################
#####     Running the TSNE emebdding     #####
##############################################
embedding = Rtsne(X = first_10k_samples, dims = 2, 
                  perplexity = 5, 
                  theta = 0.5, 
                  eta = 200,
                  pca = TRUE, verbose = TRUE, 
                  max_iter = 500)
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 5.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 11.23 seconds (sparsity = 0.002104)!
Learning embedding...
Iteration 50: error is 118.296638 (50 iterations in 2.17 seconds)
Iteration 100: error is 106.538721 (50 iterations in 2.14 seconds)
Iteration 150: error is 99.015842 (50 iterations in 1.74 seconds)
Iteration 200: error is 96.230348 (50 iterations in 1.80 seconds)
Iteration 250: error is 94.735976 (50 iterations in 1.72 seconds)
Iteration 300: error is 4.370408 (50 iterations in 1.76 seconds)
Iteration 350: error is 3.810689 (50 iterations in 1.76 seconds)
Iteration 400: error is 3.443766 (50 iterations in 1.70 seconds)
Iteration 450: error is 3.177969 (50 iterations in 1.80 seconds)
Iteration 500: error is 2.973647 (50 iterations in 1.87 seconds)
Fitting performed in 18.45 seconds.
# Visualizing TSNE output
embedding_plot = tibble(x = embedding$Y[,1], y = embedding$Y[,2], 
                        labels = as.character(first_10k_samples_labels))
ggplot(aes(x = x, y=y,label = labels, color = labels), data = embedding_plot) + 
  geom_text() +xlab('tSNE dimension 1') +ylab('tSNE dimension 2"')

Part C
perps <- c(5, 20, 60, 100, 125, 160)
for (i in perps){
  embedding = Rtsne(X = first_10k_samples, dims = 2, 
                  perplexity = i, 
                  theta = 0.5, 
                  eta = 200,
                  pca = TRUE, verbose = TRUE, 
                  max_iter = 500)
  # Visualizing TSNE output
  embedding_plot = tibble(x = embedding$Y[,1], y = embedding$Y[,2], 
                          labels = as.character(first_10k_samples_labels))
  plotvar <- ggplot(aes(x = x, y=y,label = labels, color = labels), data = embedding_plot) + 
    geom_text() +xlab('tSNE dimension 1') +ylab('tSNE dimension 2"')
  print(plotvar)
}
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 5.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 10.99 seconds (sparsity = 0.002104)!
Learning embedding...
Iteration 50: error is 118.296620 (50 iterations in 2.20 seconds)
Iteration 100: error is 106.435698 (50 iterations in 2.65 seconds)
Iteration 150: error is 98.874747 (50 iterations in 2.01 seconds)
Iteration 200: error is 96.131810 (50 iterations in 1.96 seconds)
Iteration 250: error is 94.603758 (50 iterations in 1.99 seconds)
Iteration 300: error is 4.357661 (50 iterations in 1.71 seconds)
Iteration 350: error is 3.801872 (50 iterations in 1.77 seconds)
Iteration 400: error is 3.437645 (50 iterations in 1.74 seconds)
Iteration 450: error is 3.172457 (50 iterations in 1.72 seconds)
Iteration 500: error is 2.967835 (50 iterations in 1.78 seconds)
Fitting performed in 19.53 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 20.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 13.71 seconds (sparsity = 0.008217)!
Learning embedding...
Iteration 50: error is 102.343944 (50 iterations in 2.25 seconds)
Iteration 100: error is 93.048610 (50 iterations in 2.27 seconds)
Iteration 150: error is 88.722638 (50 iterations in 1.97 seconds)
Iteration 200: error is 87.827237 (50 iterations in 1.86 seconds)
Iteration 250: error is 87.587934 (50 iterations in 1.89 seconds)
Iteration 300: error is 3.399457 (50 iterations in 1.86 seconds)
Iteration 350: error is 2.949292 (50 iterations in 1.78 seconds)
Iteration 400: error is 2.698757 (50 iterations in 1.79 seconds)
Iteration 450: error is 2.530392 (50 iterations in 1.84 seconds)
Iteration 500: error is 2.407511 (50 iterations in 1.86 seconds)
Fitting performed in 19.38 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 60.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 16.59 seconds (sparsity = 0.024328)!
Learning embedding...
Iteration 50: error is 89.428527 (50 iterations in 2.27 seconds)
Iteration 100: error is 84.939968 (50 iterations in 2.39 seconds)
Iteration 150: error is 81.459923 (50 iterations in 2.27 seconds)
Iteration 200: error is 81.451576 (50 iterations in 2.20 seconds)
Iteration 250: error is 81.451097 (50 iterations in 2.18 seconds)
Iteration 300: error is 2.603989 (50 iterations in 2.16 seconds)
Iteration 350: error is 2.266014 (50 iterations in 2.12 seconds)
Iteration 400: error is 2.093328 (50 iterations in 2.11 seconds)
Iteration 450: error is 1.985335 (50 iterations in 2.06 seconds)
Iteration 500: error is 1.909953 (50 iterations in 2.09 seconds)
Fitting performed in 21.85 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 100.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 20.81 seconds (sparsity = 0.040571)!
Learning embedding...
Iteration 50: error is 83.371128 (50 iterations in 2.69 seconds)
Iteration 100: error is 82.085545 (50 iterations in 2.79 seconds)
Iteration 150: error is 78.379137 (50 iterations in 2.59 seconds)
Iteration 200: error is 78.297408 (50 iterations in 2.65 seconds)
Iteration 250: error is 78.269857 (50 iterations in 2.68 seconds)
Iteration 300: error is 2.267728 (50 iterations in 2.59 seconds)
Iteration 350: error is 1.969324 (50 iterations in 2.55 seconds)
Iteration 400: error is 1.823938 (50 iterations in 2.50 seconds)
Iteration 450: error is 1.737029 (50 iterations in 2.54 seconds)
Iteration 500: error is 1.678444 (50 iterations in 2.51 seconds)
Fitting performed in 26.09 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 125.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 23.23 seconds (sparsity = 0.050806)!
Learning embedding...

It looks like a perplexity of 5 was perhapes the best at separating the various numbers effectively. Higher perplexity iterations found more high-level differences within the number sets - for example at perplexity 100 a group of twos split off from the main cluster of twos and moves between the ones and fours, which might be because those particular twos look somewhat different to the rest of the cluster. Also, with increased perplexity there is more mingling between the four and seven clusters, with the sevens appearing to split the four cluster in half. In any case, at all perplexities most of the numbers appear to be grouped together logically. Since perplexity is somewhat similar to nearest neighbors it makes intuitive sense to me that 5 was the most effective value of those tested above because it is closest to the number of actual values present in the data - 10.

Part D
##############################################
#####     Running the TSNE emebdding     #####
##############################################
embedding = Rtsne(X = first_10k_samples, dims = 2, 
                  perplexity = 1, 
                  theta = 0.5, 
                  eta = 200,
                  pca = TRUE, verbose = TRUE, 
                  max_iter = 500)
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 1.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 12.00 seconds (sparsity = 0.000442)!
Learning embedding...
Iteration 50: error is 135.156715 (50 iterations in 2.70 seconds)
Iteration 100: error is 116.635701 (50 iterations in 3.18 seconds)
Iteration 150: error is 108.512685 (50 iterations in 3.04 seconds)
Iteration 200: error is 104.024420 (50 iterations in 3.31 seconds)
Iteration 250: error is 100.908398 (50 iterations in 3.14 seconds)
Iteration 300: error is 5.266115 (50 iterations in 2.58 seconds)
Iteration 350: error is 4.625565 (50 iterations in 3.12 seconds)
Iteration 400: error is 4.128942 (50 iterations in 3.62 seconds)
Iteration 450: error is 3.738648 (50 iterations in 3.49 seconds)
Iteration 500: error is 3.425794 (50 iterations in 3.63 seconds)
Fitting performed in 31.80 seconds.
# Visualizing TSNE output
embedding_plot = tibble(x = embedding$Y[,1], y = embedding$Y[,2], 
                        labels = as.character(first_10k_samples_labels))
ggplot(aes(x = x, y=y,label = labels, color = labels), data = embedding_plot) + 
  geom_text() +xlab('tSNE dimension 1') +ylab('tSNE dimension 2"')

The distribution looks completely random with an even spread of various values across both dimensions. This is because since the perplexity is set at 1, the data has been loosely organized into one cluster with each point having about one close neighbor. This likely led to there being extreme emphasis on local variation to the degree that there are only a few groups of a few numbers slightly clustered together in the center of the circle.

Part E

I think it is likely that when the perplexity is set to 5000 there would be a plot somwhat similar to the above because the perplexity would be at half the number of points in the dataset. With extremely high emphasis on global variations between the data, there would be much more diffusion across the labels since there would effectively be about 5000 “close neighbors” to each point.

Part F
perps <- c(5, 20, 60, 100, 125, 160)
itercosts <- numeric(6)
n <- 1
for (i in perps){
  embedding = Rtsne(X = first_10k_samples, dims = 2, 
                  perplexity = i, 
                  theta = 0.5, 
                  eta = 200,
                  pca = TRUE, verbose = TRUE, 
                  max_iter = 500)
  itercosts[n] <- embedding$itercosts[length(embedding$itercosts)]
  
  n <- n+1
}
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 5.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 12.98 seconds (sparsity = 0.002104)!
Learning embedding...
Iteration 50: error is 118.296639 (50 iterations in 2.14 seconds)
Iteration 100: error is 106.425980 (50 iterations in 2.05 seconds)
Iteration 150: error is 99.052204 (50 iterations in 1.64 seconds)
Iteration 200: error is 96.248845 (50 iterations in 1.61 seconds)
Iteration 250: error is 94.683380 (50 iterations in 1.67 seconds)
Iteration 300: error is 4.364248 (50 iterations in 1.62 seconds)
Iteration 350: error is 3.804556 (50 iterations in 1.56 seconds)
Iteration 400: error is 3.438433 (50 iterations in 1.66 seconds)
Iteration 450: error is 3.171820 (50 iterations in 1.69 seconds)
Iteration 500: error is 2.967393 (50 iterations in 1.74 seconds)
Fitting performed in 17.38 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 20.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 12.87 seconds (sparsity = 0.008217)!
Learning embedding...
Iteration 50: error is 102.343946 (50 iterations in 2.13 seconds)
Iteration 100: error is 93.714221 (50 iterations in 2.94 seconds)
Iteration 150: error is 88.534339 (50 iterations in 2.25 seconds)
Iteration 200: error is 87.742914 (50 iterations in 2.25 seconds)
Iteration 250: error is 87.547134 (50 iterations in 2.26 seconds)
Iteration 300: error is 3.432634 (50 iterations in 1.99 seconds)
Iteration 350: error is 2.970269 (50 iterations in 1.72 seconds)
Iteration 400: error is 2.712982 (50 iterations in 1.74 seconds)
Iteration 450: error is 2.539589 (50 iterations in 1.81 seconds)
Iteration 500: error is 2.415545 (50 iterations in 1.86 seconds)
Fitting performed in 20.93 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 60.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 17.06 seconds (sparsity = 0.024328)!
Learning embedding...
Iteration 50: error is 89.428527 (50 iterations in 2.47 seconds)
Iteration 100: error is 83.883239 (50 iterations in 2.39 seconds)
Iteration 150: error is 81.705015 (50 iterations in 2.46 seconds)
Iteration 200: error is 81.658544 (50 iterations in 2.45 seconds)
Iteration 250: error is 81.654334 (50 iterations in 2.47 seconds)
Iteration 300: error is 2.641383 (50 iterations in 2.25 seconds)
Iteration 350: error is 2.287528 (50 iterations in 2.21 seconds)
Iteration 400: error is 2.109440 (50 iterations in 2.22 seconds)
Iteration 450: error is 1.997344 (50 iterations in 2.25 seconds)
Iteration 500: error is 1.919300 (50 iterations in 2.24 seconds)
Fitting performed in 23.41 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 100.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 20.85 seconds (sparsity = 0.040571)!
Learning embedding...
Iteration 50: error is 83.371128 (50 iterations in 3.14 seconds)
Iteration 100: error is 80.645713 (50 iterations in 4.78 seconds)
Iteration 150: error is 78.378166 (50 iterations in 3.73 seconds)
Iteration 200: error is 78.310978 (50 iterations in 3.21 seconds)
Iteration 250: error is 78.286956 (50 iterations in 3.14 seconds)
Iteration 300: error is 2.265710 (50 iterations in 2.79 seconds)
Iteration 350: error is 1.969091 (50 iterations in 2.62 seconds)
Iteration 400: error is 1.824555 (50 iterations in 2.59 seconds)
Iteration 450: error is 1.737675 (50 iterations in 2.63 seconds)
Iteration 500: error is 1.678882 (50 iterations in 2.67 seconds)
Fitting performed in 31.31 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 125.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 23.01 seconds (sparsity = 0.050806)!
Learning embedding...
Iteration 50: error is 80.714217 (50 iterations in 3.77 seconds)
Iteration 100: error is 79.709691 (50 iterations in 5.43 seconds)
Iteration 150: error is 77.287527 (50 iterations in 5.01 seconds)
Iteration 200: error is 76.765205 (50 iterations in 3.58 seconds)
Iteration 250: error is 76.724266 (50 iterations in 3.20 seconds)
Iteration 300: error is 2.142039 (50 iterations in 2.89 seconds)
Iteration 350: error is 1.856637 (50 iterations in 2.85 seconds)
Iteration 400: error is 1.724251 (50 iterations in 2.82 seconds)
Iteration 450: error is 1.645046 (50 iterations in 2.89 seconds)
Iteration 500: error is 1.592167 (50 iterations in 2.87 seconds)
Fitting performed in 35.30 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 160.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 25.52 seconds (sparsity = 0.065215)!
Learning embedding...
Iteration 50: error is 77.767491 (50 iterations in 3.61 seconds)
Iteration 100: error is 77.638361 (50 iterations in 5.96 seconds)
Iteration 150: error is 75.273651 (50 iterations in 6.23 seconds)
Iteration 200: error is 74.936092 (50 iterations in 3.99 seconds)
Iteration 250: error is 74.923410 (50 iterations in 3.68 seconds)
Iteration 300: error is 2.010979 (50 iterations in 3.29 seconds)
Iteration 350: error is 1.751679 (50 iterations in 3.28 seconds)
Iteration 400: error is 1.628257 (50 iterations in 3.24 seconds)
Iteration 450: error is 1.555052 (50 iterations in 3.25 seconds)
Iteration 500: error is 1.507294 (50 iterations in 3.23 seconds)
Fitting performed in 39.76 seconds.
plot(perps, itercosts)

Based on this graph the optimal value appears to be a perplexity of 160, because it minimizes the iter_costs (KL divergence) more than any other perplexity value. Intuitively based on the graphs above, I don’t think this makes sense, but that could be why the article recommends plotting at multiple perplexities rather than selecting a perplexity based on a numeric output like the minimization of the KL-divergence, which I think in this case might be overfitting and focusing on more global variations in the data.

Part G
etas <- c(10, 100, 200)
for (i in etas){
  embedding = Rtsne(X = first_10k_samples, dims = 2, 
                  perplexity = 160, 
                  theta = 0.5, 
                  eta = i,
                  pca = TRUE, verbose = TRUE, 
                  max_iter = 500)
  # Visualizing TSNE output
  embedding_plot = tibble(x = embedding$Y[,1], y = embedding$Y[,2], 
                          labels = as.character(first_10k_samples_labels))
  plotvar <- ggplot(aes(x = x, y=y,label = labels, color = labels), data = embedding_plot) + 
    geom_text() +xlab('tSNE dimension 1') +ylab('tSNE dimension 2"')
  print(plotvar)
}
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 160.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 26.09 seconds (sparsity = 0.065215)!
Learning embedding...
Iteration 50: error is 77.767491 (50 iterations in 3.48 seconds)
Iteration 100: error is 77.767491 (50 iterations in 3.70 seconds)
Iteration 150: error is 77.767491 (50 iterations in 4.80 seconds)
Iteration 200: error is 77.767491 (50 iterations in 6.26 seconds)
Iteration 250: error is 77.767487 (50 iterations in 8.00 seconds)
Iteration 300: error is 3.811714 (50 iterations in 9.12 seconds)
Iteration 350: error is 2.893403 (50 iterations in 6.50 seconds)
Iteration 400: error is 2.459480 (50 iterations in 4.01 seconds)
Iteration 450: error is 2.238439 (50 iterations in 3.84 seconds)
Iteration 500: error is 2.095257 (50 iterations in 3.71 seconds)
Fitting performed in 53.41 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 160.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 26.44 seconds (sparsity = 0.065215)!
Learning embedding...
Iteration 50: error is 77.767491 (50 iterations in 3.31 seconds)
Iteration 100: error is 77.767482 (50 iterations in 5.53 seconds)
Iteration 150: error is 75.842008 (50 iterations in 6.45 seconds)
Iteration 200: error is 75.277272 (50 iterations in 6.92 seconds)
Iteration 250: error is 74.942551 (50 iterations in 4.16 seconds)
Iteration 300: error is 2.080620 (50 iterations in 3.09 seconds)
Iteration 350: error is 1.827789 (50 iterations in 3.01 seconds)
Iteration 400: error is 1.692479 (50 iterations in 3.01 seconds)
Iteration 450: error is 1.613633 (50 iterations in 3.01 seconds)
Iteration 500: error is 1.558856 (50 iterations in 3.06 seconds)
Fitting performed in 41.54 seconds.
Performing PCA
Read the 10000 x 50 data matrix successfully!
OpenMP is working. 1 threads.
Using no_dims = 2, perplexity = 160.000000, and theta = 0.500000
Computing input similarities...
Building tree...
 - point 10000 of 10000
Done in 25.88 seconds (sparsity = 0.065215)!
Learning embedding...
Iteration 50: error is 77.767491 (50 iterations in 3.24 seconds)
Iteration 100: error is 77.760560 (50 iterations in 4.57 seconds)
Iteration 150: error is 75.284980 (50 iterations in 4.53 seconds)
Iteration 200: error is 74.947997 (50 iterations in 3.91 seconds)
Iteration 250: error is 74.927275 (50 iterations in 3.82 seconds)
Iteration 300: error is 1.997175 (50 iterations in 3.17 seconds)
Iteration 350: error is 1.741911 (50 iterations in 3.11 seconds)
Iteration 400: error is 1.613746 (50 iterations in 3.11 seconds)
Iteration 450: error is 1.540876 (50 iterations in 3.12 seconds)
Iteration 500: error is 1.493835 (50 iterations in 3.12 seconds)
Fitting performed in 35.69 seconds.

It looks like lower learning rates result in increased bleeding over between clusters - probably because the algorithm doesn’t achieve as much convergence with lower learning rates and the same number of iterations. The output also shows that the iter_costs (KL divergence) is higher for the lower learning rates.

LS0tDQp0aXRsZTogIkhXMyINCmF1dGhvcjogIkFyc2hpYSBTaW5naCINCmRhdGU6ICJNYXJjaCAzMSwgMjAyMCINCm91dHB1dDogaHRtbF9ub3RlYm9vaw0KLS0tDQpDb2xsYWJvcmF0b3JzOiBYaW5lciwgTm9ybWFuLCBKYWNrICANCiAgDQojIyBQYXJ0IDEgIA0KIyMjIFF1ZXN0aW9uIDEgLSBCb29zdGluZyAgDQojIyMjIFBhcnQgMSAgDQojIyMjIyBRMCAgDQpgYGB7cn0NCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyMjIyMgTG9hZGluZyBsaWJyYXJpZXMgJiBkYXRhICMjIyMjDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCmxpYnJhcnkodGlkeXZlcnNlKQ0KbGlicmFyeShzcGxpbmVzKQ0KbGlicmFyeShycGFydCkNCg0KIyBHZW5lcmF0aW5nIHNhbXBsZSBkYXRhDQpuPTMwMA0Kc2V0LnNlZWQoMSkNCnU9c29ydChydW5pZihuKSo1KnBpKQ0KeSA9IHNpbih1KStybm9ybShuKS80DQpkZiA9IGRhdGEuZnJhbWUoeD11LHk9eSkNCg0KDQojIFNldHRpbmcgdXAgcGFyYW1ldGVycw0Kdj0uMDUgDQpydW5ib29zdCA8LSBmdW5jdGlvbih2KXsNCiAgICBudW1iZXJfb2Zfd2Vha19sZWFybmVycyA9IDEwMA0KICAgIG51bWJlcl9vZl9rbm90c19zcGxpdCA9IDYNCiAgICBwb2x5bm9taWFsX2RlZ3JlZSA9IDINCiAgICANCiAgICAjIEZpdCByb3VuZCAxDQogICAgZml0PXJwYXJ0KHl+YnMoeCxkZWdyZWU9MixkZj02KSxkYXRhPWRmKQ0KICAgIHlwID0gcHJlZGljdChmaXQsbmV3ZGF0YT1kZikNCiAgICBkZiR5ciA9IGRmJHkgLSB2KnlwDQogICAgWVAgPSB2KnlwDQogICAgbGlzdF9vZl93ZWFrX2xlYXJuZXJzID0gbGlzdChmaXQpDQogICAgDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgIyMjIyMgQm9vc3Rpbmcgd2l0aCBTcGxpbmVzICMjIyMjDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgZm9yKHQgaW4gMjpudW1iZXJfb2Zfd2Vha19sZWFybmVycyl7DQogICAgICAjIEZpdCBsaW5lYXIgc3BsaW5lDQogICAgICBmaXQgPSBycGFydCh5ciB+IGJzKHgsIA0KICAgICAgICAgICAgICAgICAgICAgICBkZWdyZWU9cG9seW5vbWlhbF9kZWdyZWUsDQogICAgICAgICAgICAgICAgICAgICAgIGRmPW51bWJlcl9vZl9rbm90c19zcGxpdCksZGF0YT1kZikgDQogICAgICANCiAgICAgICMgR2VuZXJhdGUgbmV3IHByZWRpY3Rpb24NCiAgICAgIHlwPXByZWRpY3QoZml0LG5ld2RhdGE9ZGYpDQogICAgICANCiAgICAgICMgVXBkYXRlIHJlc2lkdWFscw0KICAgICAgZGYkeXI9ZGYkeXIgLSB2KnlwDQogICAgICANCiAgICAgICMgQmluZCB0byBuZXcgZGF0YSBwb2ludA0KICAgICAgWVAgPSBjYmluZChZUCx2KnlwKQ0KICAgICAgDQogICAgICAjIFN0b3JlIGZpdHRlZCBtb2RlbCBpbiBsaXN0DQogICAgICBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW3RdXSA9IGZpdA0KICAgIH0NCiAgICANCiAgICANCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgIyMjIyMgR2V0dGluZyBwcmVkaWN0aW9ucyBmb3IgZWFjaCBib29zdCAjIyMjIw0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICBmb3IgKGkgaW4gMTpudW1iZXJfb2Zfd2Vha19sZWFybmVycyl7DQogICAgICAjIENhbGN1bGF0aW5nIHBlcmZvcm1hbmNlIG9mIGZpcnN0IGkgd2Vha19sZWFybmVycw0KICAgICAgDQogICAgICAjIFN1bW1pbmcgd2VhayBsZWFybmVyIHJlc2lkdWFscw0KICAgICAgaWYoaT09MSl7eXBfaSA9IFlQWywxOmldDQogICAgICB9ZWxzZXt5cF9pPWFwcGx5KFlQWywxOmldLDEsc3VtKSAjPC0gc3Ryb25nIGxlYXJuZXINCiAgICAgIH0NCiAgICAgIA0KICAgICAgIyBCaW5kcyBuZXcgY29scw0KICAgICAgY29sX25hbWUgPSBwYXN0ZTAoJ3lwXycsaSkNCiAgICAgIGRmID0gZGYgJT4lIGJpbmRfY29scyh5cD15cF9pKQ0KICAgIH0NCiAgICANCiAgICAjIFJlLWFycmFuZ2Ugc2VxdWVuY2VzIHRvIGdldCBwc2V1ZG8gcmVzaWR1YWxzIA0KICAgIHBsb3Rfd2wgPSBkZiAlPiUgc2VsZWN0KC15LC15cikgJT4lIA0KICAgICAgcGl2b3RfbG9uZ2VyKGNvbHMgPSBzdGFydHNfd2l0aCgieXAiKSkgJT4lIA0KICAgICAgbXV0YXRlKGxlYXJuZXIgPSBzdHJfbWF0Y2gobmFtZSwiWzAtOV0rIikpICU+JSANCiAgICAgIG11dGF0ZShsZWFybmVyID0gYXMuaW50ZWdlcihpZmVsc2UoaXMubmEobGVhcm5lciksMCxsZWFybmVyKSkpDQogICAgDQogICAgIyBQbG90IGZpbmFsIGxlYXJuZXINCiAgICBmaW5hbF9sZWFybmVyID0gcGxvdF93bCAlPiUgZmlsdGVyKGxlYXJuZXIgPT0gKG51bWJlcl9vZl93ZWFrX2xlYXJuZXJzLTEpKQ0KICAgIA0KICAgICMgUGxvdCBwcm9ncmVzc2lvbiBvZiBsZWFybmVyDQogICAgcGxvdDEgPC0gZ2dwbG90KCkgKyANCiAgICAgICMgVmlzdWFsaXppbmcgYWxsIGxlYXJuZXJzDQogICAgICBnZW9tX2xpbmUoYWVzKHggPSB4LCB5ID0gdmFsdWUsIGdyb3VwID0gbGVhcm5lciwgY29sb3IgPWxlYXJuZXIpLA0KICAgICAgICAgICAgICAgIGRhdGEgPSBwbG90X3dsLGFscGhhPTAuNSkgKw0KICAgICAgIyBGaW5hbCBsZWFybmVyDQogICAgICBnZW9tX2xpbmUoYWVzKHggPSB4LCB5ID0gdmFsdWUsIGdyb3VwID0gbGVhcm5lciwgY29sb3IgPWxlYXJuZXIpLA0KICAgICAgICAgICAgICAgIGRhdGEgPSBmaW5hbF9sZWFybmVyLGFscGhhPTAuNSxjb2xvciA9ICdmaXJlYnJpY2sxJyxzaXplID0gMikgICsNCiAgICAgIGdlb21fcG9pbnQoYWVzKHggPSB4LCB5PSB5KSxkYXRhID0gZGYpKyAjIHRydWUgdmFsdWVzDQogICAgICB0aGVtZV9taW5pbWFsKCkNCiAgICBwcmludChwbG90MSkNCiAgICANCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgIyMjIyMgUHJlZGljdGluZyBvbiBuZXcgZGF0YSAjIyMjIw0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICANCiAgICBuZXdfZGF0YSA9IHRpYmJsZSh4ID0gc2FtcGxlKHNlcSgwLDQqMywwLjAwMSksc2l6ZSA9IDEwMCxyZXBsYWNlID0gVCkpDQogICAgDQogICAgZm9yIChpIGluIDE6bnVtYmVyX29mX3dlYWtfbGVhcm5lcnMpew0KICAgICAgd2Vha19sZWFybmVyX2kgPSBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW2ldXQ0KICAgICAgDQogICAgICBpZiAoaT09MSl7cHJlZCA9IHYqcHJlZGljdCh3ZWFrX2xlYXJuZXJfaSxuZXdfZGF0YSl9DQogICAgICBlbHNle3ByZWQgPXByZWQgKyB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksbmV3X2RhdGEpfQ0KICAgICAgDQogICAgICBpZihpPT1udW1iZXJfb2Zfd2Vha19sZWFybmVycyl7DQogICAgICAgIG5ld19kYXRhID0gbmV3X2RhdGEgJT4lIGJpbmRfY29scyh5cD1wcmVkKQ0KICAgICAgfQ0KICAgIH0NCiAgICANCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICAjIyMjIyBWaXN1YWxpemluZyBib29zdGVkIHZzIHByZWRpY3RlZCBtb2RlbHMgIyMjIyMNCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgIHBsb3QyIDwtIGdncGxvdChhZXMoeD14LCB5PXkpLGRhdGEgPSB0aWJibGUoeCA9IGRmJHgsIHkgPSBkZiR5KSkrDQogICAgICB4bGFiKCcnKSt5bGFiKCcnKSsgDQogICAgICBnZW9tX3BvaW50KCkrDQogICAgICAjIEZpbmFsIGxlYXJuZXIgZnJvbSB0cmFpbmluZyBkYXRhDQogICAgICBnZW9tX2xpbmUoYWVzKHggPSB4LCB5ID0gdmFsdWUsIGdyb3VwID0gbGVhcm5lciwgY29sb3IgPWxlYXJuZXIpLCBkYXRhID0gZmluYWxfbGVhcm5lciAsIGNvbG9yID0gJ2ZpcmVicmljazEnLHNpemUgPSAyKSAgKw0KICAgICAgIyBUcnVlIHZhbHVlDQogICAgICBnZW9tX2xpbmUoYWVzKHg9eCx5PXkpLGRhdGEgPSB0aWJibGUoeCA9IHUseSA9IHNpbih1KSksIGNvbG9yPSdibGFjaycsbGluZXR5cGUgPSAnZGFzaGVkJykrICMgdHJ1ZSB2YWx1ZXMNCiAgICAgICMgUHJlZGljdGlvbiBvbiBuZXcgZGF0YQ0KICAgICAgZ2VvbV9saW5lKGFlcyh4PXgseT15cCksZGF0YSA9IG5ld19kYXRhLCBjb2xvcj0nYmx1ZScsc2l6ZSA9IDIsYWxwaGEgPSAwLjUpKyAjIHByZWRpY3RlZCB2YWx1ZXMNCiAgICAgIHRoZW1lX21pbmltYWwoKQ0KICAgIHByaW50KHBsb3QyKQ0KfQ0KDQpydW5ib29zdCgwLjA1KQ0KYGBgDQogIA0KIyMjIyMgUTEgIA0KYGBge3J9DQpydW5ib29zdCgwLjAxKQ0KcnVuYm9vc3QoMC4wNSkNCnJ1bmJvb3N0KDAuMTI1KQ0KYGBgDQpJdCBsb29rcyBsaWtlIGluY3JlYXNpbmcgdGhlIGxlYXJuaW5nIHBhcmFtZXRlciBmcm9tIDAuMDEgdG8gMC4wNSBpbmNyZWFzZWQgdGhlIGFjY3VyYWN5IG9mIHRoZSBmaXQgc2lnbmlmaWNhbnRseSwgYnV0IGZ1cnRoZXIgaW5jcmVhc2VzIGluIHRoZSBsZWFybmluZyBwYXJhbWV0ZXIgZGlkIG5vdCBsZWFkIHRvIGEgYmV0dGVyIGZpdC4gICAgDQogIA0KIyMjIyMgUTINCiMjIyMjIyBQYXJ0IEENCmBgYHtyfQ0KcnVuYm9vc3QgPC0gZnVuY3Rpb24odil7DQogICAgbnVtYmVyX29mX2tub3RzX3NwbGl0ID0gNg0KICAgIHBvbHlub21pYWxfZGVncmVlID0gMg0KICAgIA0KICAgIA0KICAgICMgRml0IHJvdW5kIDENCiAgICBmaXQ9cnBhcnQoeX5icyh4LGRlZ3JlZT0yLGRmPTYpLGRhdGE9ZGYpDQogICAgeXAgPSBwcmVkaWN0KGZpdCxuZXdkYXRhPWRmKQ0KICAgIGRmJHlyID0gZGYkeSAtIHYqeXANCiAgICBZUCA9IHYqeXANCiAgICBsaXN0X29mX3dlYWtfbGVhcm5lcnMgPSBsaXN0KGZpdCkNCiAgICANCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICAjIyMjIyBCb29zdGluZyB3aXRoIFNwbGluZXMgIyMjIyMNCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICBtZWFuX3Z5cCA9IG1lYW4oWVApDQogICAgdD0xDQogICAgd2hpbGUobWVhbl92eXAgPiAwLjAwMDEpew0KICAgICAgdD10KzENCiAgICAgICMgRml0IGxpbmVhciBzcGxpbmUNCiAgICAgIGZpdCA9IHJwYXJ0KHlyIH4gYnMoeCwgDQogICAgICAgICAgICAgICAgICAgICAgIGRlZ3JlZT1wb2x5bm9taWFsX2RlZ3JlZSwNCiAgICAgICAgICAgICAgICAgICAgICAgZGY9bnVtYmVyX29mX2tub3RzX3NwbGl0KSxkYXRhPWRmKSANCiAgICAgIA0KICAgICAgIyBHZW5lcmF0ZSBuZXcgcHJlZGljdGlvbg0KICAgICAgeXA9cHJlZGljdChmaXQsbmV3ZGF0YT1kZikNCiAgICAgIA0KICAgICAgIyBVcGRhdGUgcmVzaWR1YWxzDQogICAgICBkZiR5cj1kZiR5ciAtIHYqeXANCiAgICAgIA0KICAgICAgIyBCaW5kIHRvIG5ldyBkYXRhIHBvaW50DQogICAgICBZUCA9IGNiaW5kKFlQLHYqeXApDQogICAgICANCiAgICAgICMgU3RvcmUgZml0dGVkIG1vZGVsIGluIGxpc3QNCiAgICAgIGxpc3Rfb2Zfd2Vha19sZWFybmVyc1tbdF1dID0gZml0DQogICAgICBtZWFuX3Z5cCA9IG1lYW4odip5cCkNCiAgICB9DQogICAgcHJpbnQodCkNCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgIyMjIyMgR2V0dGluZyBwcmVkaWN0aW9ucyBmb3IgZWFjaCBib29zdCAjIyMjIw0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICBmb3IgKGkgaW4gMTp0KXsNCiAgICAgICMgQ2FsY3VsYXRpbmcgcGVyZm9ybWFuY2Ugb2YgZmlyc3QgaSB3ZWFrX2xlYXJuZXJzDQogICAgICANCiAgICAgICMgU3VtbWluZyB3ZWFrIGxlYXJuZXIgcmVzaWR1YWxzDQogICAgICBpZihpPT0xKXt5cF9pID0gWVBbLDE6aV0NCiAgICAgIH1lbHNle3lwX2k9YXBwbHkoWVBbLDE6aV0sMSxzdW0pICM8LSBzdHJvbmcgbGVhcm5lcg0KICAgICAgfQ0KICAgICAgDQogICAgICAjIEJpbmRzIG5ldyBjb2xzDQogICAgICBjb2xfbmFtZSA9IHBhc3RlMCgneXBfJyxpKQ0KICAgICAgZGYgPSBkZiAlPiUgYmluZF9jb2xzKHlwPXlwX2kpDQogICAgfQ0KICAgIA0KICAgICMgUmUtYXJyYW5nZSBzZXF1ZW5jZXMgdG8gZ2V0IHBzZXVkbyByZXNpZHVhbHMgDQogICAgcGxvdF93bCA9IGRmICU+JSBzZWxlY3QoLXksLXlyKSAlPiUgDQogICAgICBwaXZvdF9sb25nZXIoY29scyA9IHN0YXJ0c193aXRoKCJ5cCIpKSAlPiUgDQogICAgICBtdXRhdGUobGVhcm5lciA9IHN0cl9tYXRjaChuYW1lLCJbMC05XSsiKSkgJT4lIA0KICAgICAgbXV0YXRlKGxlYXJuZXIgPSBhcy5pbnRlZ2VyKGlmZWxzZShpcy5uYShsZWFybmVyKSwwLGxlYXJuZXIpKSkNCiAgICANCiAgICAjIFBsb3QgZmluYWwgbGVhcm5lcg0KICAgIGZpbmFsX2xlYXJuZXIgPSBwbG90X3dsICU+JSBmaWx0ZXIobGVhcm5lciA9PSAodC0xKSkNCiAgICANCiAgICAjIFBsb3QgcHJvZ3Jlc3Npb24gb2YgbGVhcm5lcg0KICAgIHBsb3QxIDwtIGdncGxvdCgpICsgDQogICAgICAjIFZpc3VhbGl6aW5nIGFsbCBsZWFybmVycw0KICAgICAgZ2VvbV9saW5lKGFlcyh4ID0geCwgeSA9IHZhbHVlLCBncm91cCA9IGxlYXJuZXIsIGNvbG9yID1sZWFybmVyKSwNCiAgICAgICAgICAgICAgICBkYXRhID0gcGxvdF93bCxhbHBoYT0wLjUpICsNCiAgICAgICMgRmluYWwgbGVhcm5lcg0KICAgICAgZ2VvbV9saW5lKGFlcyh4ID0geCwgeSA9IHZhbHVlLCBncm91cCA9IGxlYXJuZXIsIGNvbG9yID1sZWFybmVyKSwNCiAgICAgICAgICAgICAgICBkYXRhID0gZmluYWxfbGVhcm5lcixhbHBoYT0wLjUsY29sb3IgPSAnZmlyZWJyaWNrMScsc2l6ZSA9IDIpICArDQogICAgICBnZW9tX3BvaW50KGFlcyh4ID0geCwgeT0geSksZGF0YSA9IGRmKSsgIyB0cnVlIHZhbHVlcw0KICAgICAgdGhlbWVfbWluaW1hbCgpDQogICAgcHJpbnQocGxvdDEpDQogICAgDQogICAgDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgICMjIyMjIFByZWRpY3Rpbmcgb24gbmV3IGRhdGEgIyMjIyMNCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgDQogICAgbmV3X2RhdGEgPSB0aWJibGUoeCA9IHNhbXBsZShzZXEoMCw0KjMsMC4wMDEpLHNpemUgPSAxMDAscmVwbGFjZSA9IFQpKQ0KICAgIA0KICAgIGZvciAoaSBpbiAxOnQpew0KICAgICAgd2Vha19sZWFybmVyX2kgPSBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW2ldXQ0KICAgICAgDQogICAgICBpZiAoaT09MSl7cHJlZCA9IHYqcHJlZGljdCh3ZWFrX2xlYXJuZXJfaSxuZXdfZGF0YSl9DQogICAgICBlbHNle3ByZWQgPXByZWQgKyB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksbmV3X2RhdGEpfQ0KICAgICAgDQogICAgICBpZihpPT10KXsNCiAgICAgICAgbmV3X2RhdGEgPSBuZXdfZGF0YSAlPiUgYmluZF9jb2xzKHlwPXByZWQpDQogICAgICB9DQogICAgfQ0KICAgIA0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgICMjIyMjIFZpc3VhbGl6aW5nIGJvb3N0ZWQgdnMgcHJlZGljdGVkIG1vZGVscyAjIyMjIw0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgcGxvdDIgPC0gZ2dwbG90KGFlcyh4PXgsIHk9eSksZGF0YSA9IHRpYmJsZSh4ID0gZGYkeCwgeSA9IGRmJHkpKSsNCiAgICAgIHhsYWIoJycpK3lsYWIoJycpKyANCiAgICAgIGdlb21fcG9pbnQoKSsNCiAgICAgICMgRmluYWwgbGVhcm5lciBmcm9tIHRyYWluaW5nIGRhdGENCiAgICAgIGdlb21fbGluZShhZXMoeCA9IHgsIHkgPSB2YWx1ZSwgZ3JvdXAgPSBsZWFybmVyLCBjb2xvciA9bGVhcm5lciksIGRhdGEgPSBmaW5hbF9sZWFybmVyICwgY29sb3IgPSAnZmlyZWJyaWNrMScsc2l6ZSA9IDIpICArDQogICAgICAjIFRydWUgdmFsdWUNCiAgICAgIGdlb21fbGluZShhZXMoeD14LHk9eSksZGF0YSA9IHRpYmJsZSh4ID0gdSx5ID0gc2luKHUpKSwgY29sb3I9J2JsYWNrJyxsaW5ldHlwZSA9ICdkYXNoZWQnKSsgIyB0cnVlIHZhbHVlcw0KICAgICAgIyBQcmVkaWN0aW9uIG9uIG5ldyBkYXRhDQogICAgICBnZW9tX2xpbmUoYWVzKHg9eCx5PXlwKSxkYXRhID0gbmV3X2RhdGEsIGNvbG9yPSdibHVlJyxzaXplID0gMixhbHBoYSA9IDAuNSkrICMgcHJlZGljdGVkIHZhbHVlcw0KICAgICAgdGhlbWVfbWluaW1hbCgpDQogICAgcHJpbnQocGxvdDIpDQp9DQoNCnJ1bmJvb3N0KDAuMDUpDQpgYGANCiMjIyMjIyBQYXJ0IEIgIA0KVGhlcmUgd2VyZSA4MiB0cmVlcyBmb3IgdGhpcyBydW4uICANCiAgDQojIyMjIyMgUGFydCBDICANCmBgYHtyfQ0KUk1TRSA9IGZ1bmN0aW9uKGZpdCwgb2JzKXsNCiAgc3FydChtZWFuKChmaXQgLSBvYnMpXjIpKQ0KfQ0KDQpydW5ib29zdCA8LSBmdW5jdGlvbih2KXsNCiAgICBudW1iZXJfb2Zfa25vdHNfc3BsaXQgPSA2DQogICAgcG9seW5vbWlhbF9kZWdyZWUgPSAyDQogICAgDQogICAgYXNzaWdubWVudCA8LSBzYW1wbGUoMTozLCBzaXplID0gbnJvdyhkZiksIHByb2I9YygwLjcwLCAwLjE1LCAwLjE1KSwgcmVwbGFjZSA9IFRSVUUpDQoNCiAgICBkZl90cmFpbiA8LSBkZlthc3NpZ25tZW50ID09IDEsIF0gDQogICAgZGZfdmFsaWQgPC0gZGZbYXNzaWdubWVudCA9PSAyLCBdDQogICAgZGZfdGVzdCA8LSBkZlthc3NpZ25tZW50ID09IDMsIF0NCiAgICANCiAgICAjIEZpdCByb3VuZCAxDQogICAgZml0PXJwYXJ0KHl+YnMoeCxkZWdyZWU9MixkZj02KSxkYXRhPWRmX3RyYWluKQ0KICAgIHlwID0gcHJlZGljdChmaXQsbmV3ZGF0YT1kZl90cmFpbikNCiAgICBkZl90cmFpbiR5ciA9IGRmX3RyYWluJHkgLSB2KnlwDQogICAgWVAgPSB2KnlwDQogICAgbGlzdF9vZl93ZWFrX2xlYXJuZXJzID0gbGlzdChmaXQpDQogICAgDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgIyMjIyMgQm9vc3Rpbmcgd2l0aCBTcGxpbmVzICMjIyMjDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgbWVhbl92eXAgPSBtZWFuKFlQKQ0KICAgIHQ9MQ0KICAgIHdoaWxlKG1lYW5fdnlwID4gMC4wMDAxKXsNCiAgICAgIHQ9dCsxDQogICAgICAjIEZpdCBsaW5lYXIgc3BsaW5lDQogICAgICBmaXQgPSBycGFydCh5ciB+IGJzKHgsIA0KICAgICAgICAgICAgICAgICAgICAgICBkZWdyZWU9cG9seW5vbWlhbF9kZWdyZWUsDQogICAgICAgICAgICAgICAgICAgICAgIGRmPW51bWJlcl9vZl9rbm90c19zcGxpdCksZGF0YT1kZl90cmFpbikgDQogICAgICANCiAgICAgICMgR2VuZXJhdGUgbmV3IHByZWRpY3Rpb24NCiAgICAgIHlwPXByZWRpY3QoZml0LG5ld2RhdGE9ZGZfdHJhaW4pDQogICAgICANCiAgICAgICMgVXBkYXRlIHJlc2lkdWFscw0KICAgICAgZGZfdHJhaW4keXI9ZGZfdHJhaW4keXIgLSB2KnlwDQogICAgICANCiAgICAgICMgQmluZCB0byBuZXcgZGF0YSBwb2ludA0KICAgICAgWVAgPSBjYmluZChZUCx2KnlwKQ0KICAgICAgDQogICAgICAjIFN0b3JlIGZpdHRlZCBtb2RlbCBpbiBsaXN0DQogICAgICBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW3RdXSA9IGZpdA0KICAgICAgbWVhbl92eXAgPSBtZWFuKHYqeXApDQogICAgfQ0KICAgIHByaW50KHQpDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgICMjIyMjIEdldHRpbmcgcHJlZGljdGlvbnMgZm9yIGVhY2ggYm9vc3QgIyMjIyMNCiAgICAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgZm9yIChpIGluIDE6dCl7DQogICAgICAjIENhbGN1bGF0aW5nIHBlcmZvcm1hbmNlIG9mIGZpcnN0IGkgd2Vha19sZWFybmVycw0KICAgICAgDQogICAgICAjIFN1bW1pbmcgd2VhayBsZWFybmVyIHJlc2lkdWFscw0KICAgICAgaWYoaT09MSl7eXBfaSA9IFlQWywxOmldDQogICAgICB9ZWxzZXt5cF9pPWFwcGx5KFlQWywxOmldLDEsc3VtKSAjPC0gc3Ryb25nIGxlYXJuZXINCiAgICAgIH0NCiAgICAgIA0KICAgICAgIyBCaW5kcyBuZXcgY29scw0KICAgICAgY29sX25hbWUgPSBwYXN0ZTAoJ3lwXycsaSkNCiAgICAgIGRmX3RyYWluID0gZGZfdHJhaW4gJT4lIGJpbmRfY29scyh5cD15cF9pKQ0KICAgIH0NCiAgICANCiAgICAjIFJlLWFycmFuZ2Ugc2VxdWVuY2VzIHRvIGdldCBwc2V1ZG8gcmVzaWR1YWxzIA0KICAgIHBsb3Rfd2wgPSBkZl90cmFpbiAlPiUgc2VsZWN0KC15LC15cikgJT4lIA0KICAgICAgcGl2b3RfbG9uZ2VyKGNvbHMgPSBzdGFydHNfd2l0aCgieXAiKSkgJT4lIA0KICAgICAgbXV0YXRlKGxlYXJuZXIgPSBzdHJfbWF0Y2gobmFtZSwiWzAtOV0rIikpICU+JSANCiAgICAgIG11dGF0ZShsZWFybmVyID0gYXMuaW50ZWdlcihpZmVsc2UoaXMubmEobGVhcm5lciksMCxsZWFybmVyKSkpDQogICAgDQogICAgIyBQbG90IGZpbmFsIGxlYXJuZXINCiAgICBmaW5hbF9sZWFybmVyID0gcGxvdF93bCAlPiUgZmlsdGVyKGxlYXJuZXIgPT0gKHQtMSkpDQogICAgDQogICAgIyBQbG90IHByb2dyZXNzaW9uIG9mIGxlYXJuZXINCiAgICBwbG90MSA8LSBnZ3Bsb3QoKSArIA0KICAgICAgIyBWaXN1YWxpemluZyBhbGwgbGVhcm5lcnMNCiAgICAgIGdlb21fbGluZShhZXMoeCA9IHgsIHkgPSB2YWx1ZSwgZ3JvdXAgPSBsZWFybmVyLCBjb2xvciA9bGVhcm5lciksDQogICAgICAgICAgICAgICAgZGF0YSA9IHBsb3Rfd2wsYWxwaGE9MC41KSArDQogICAgICAjIEZpbmFsIGxlYXJuZXINCiAgICAgIGdlb21fbGluZShhZXMoeCA9IHgsIHkgPSB2YWx1ZSwgZ3JvdXAgPSBsZWFybmVyLCBjb2xvciA9bGVhcm5lciksDQogICAgICAgICAgICAgICAgZGF0YSA9IGZpbmFsX2xlYXJuZXIsYWxwaGE9MC41LGNvbG9yID0gJ2ZpcmVicmljazEnLHNpemUgPSAyKSAgKw0KICAgICAgZ2VvbV9wb2ludChhZXMoeCA9IHgsIHk9IHkpLGRhdGEgPSBkZl90cmFpbikrICMgdHJ1ZSB2YWx1ZXMNCiAgICAgIHRoZW1lX21pbmltYWwoKQ0KICAgIHByaW50KHBsb3QxKQ0KICAgIA0KICAgIA0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICAjIyMjIyBQcmVkaWN0aW5nIG9uIG5ldyBkYXRhLCB0ZXN0LCB2YWxpZGF0aW9uIHNldCAjIyMjIw0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICANCiAgICBmb3IgKGkgaW4gMTp0KXsNCiAgICAgIHdlYWtfbGVhcm5lcl9pID0gbGlzdF9vZl93ZWFrX2xlYXJuZXJzW1tpXV0NCiAgICAgIA0KICAgICAgaWYgKGk9PTEpe3ByZWQgPSB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksZGZfdmFsaWQpfQ0KICAgICAgZWxzZXtwcmVkID1wcmVkICsgdipwcmVkaWN0KHdlYWtfbGVhcm5lcl9pLGRmX3ZhbGlkKX0NCiAgICAgIA0KICAgICAgaWYoaT09dCl7DQogICAgICAgIGRmX3ZhbGlkID0gZGZfdmFsaWQgJT4lIGJpbmRfY29scyh5cD1wcmVkKQ0KICAgICAgfQ0KICAgIH0NCiAgICANCiAgICBmb3IgKGkgaW4gMTp0KXsNCiAgICAgIHdlYWtfbGVhcm5lcl9pID0gbGlzdF9vZl93ZWFrX2xlYXJuZXJzW1tpXV0NCiAgICAgIA0KICAgICAgaWYgKGk9PTEpe3ByZWQgPSB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksZGZfdGVzdCl9DQogICAgICBlbHNle3ByZWQgPXByZWQgKyB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksZGZfdGVzdCl9DQogICAgICANCiAgICAgIGlmKGk9PXQpew0KICAgICAgICBkZl90ZXN0ID0gZGZfdGVzdCAlPiUgYmluZF9jb2xzKHlwPXByZWQpDQogICAgICB9DQogICAgfQ0KICAgIA0KICAgIG5ld19kYXRhID0gdGliYmxlKHggPSBzYW1wbGUoc2VxKDAsNCozLDAuMDAxKSxzaXplID0gMTAwLHJlcGxhY2UgPSBUKSkNCiAgICANCiAgICBmb3IgKGkgaW4gMTp0KXsNCiAgICAgIHdlYWtfbGVhcm5lcl9pID0gbGlzdF9vZl93ZWFrX2xlYXJuZXJzW1tpXV0NCiAgICAgIA0KICAgICAgaWYgKGk9PTEpe3ByZWQgPSB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksbmV3X2RhdGEpfQ0KICAgICAgZWxzZXtwcmVkID1wcmVkICsgdipwcmVkaWN0KHdlYWtfbGVhcm5lcl9pLG5ld19kYXRhKX0NCiAgICAgIA0KICAgICAgaWYoaT09dCl7DQogICAgICAgIG5ld19kYXRhID0gbmV3X2RhdGEgJT4lIGJpbmRfY29scyh5cD1wcmVkKQ0KICAgICAgfQ0KICAgIH0NCg0KICAgIHByaW50KCJ0cmFpbiBSTVNFOiIpDQogICAgcHJpbnQoUk1TRShkZl90cmFpbiR5cCwgZGZfdHJhaW4keSkpDQogICAgcHJpbnQoInZhbGlkYXRpb24gUk1TRToiKQ0KICAgIHByaW50KFJNU0UoZGZfdmFsaWQkeXAsIGRmX3ZhbGlkJHkpKQ0KICAgIHByaW50KCJ0ZXN0IFJNU0U6IikNCiAgICBwcmludChSTVNFKGRmX3Rlc3QkeXAsIGRmX3Rlc3QkeSkpDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQogICAgIyMjIyMgVmlzdWFsaXppbmcgYm9vc3RlZCB2cyBwcmVkaWN0ZWQgbW9kZWxzICMjIyMjDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICBwbG90MiA8LSBnZ3Bsb3QoYWVzKHg9eCwgeT15KSxkYXRhID0gdGliYmxlKHggPSBkZiR4LCB5ID0gZGYkeSkpKw0KICAgICAgeGxhYignJykreWxhYignJykrIA0KICAgICAgZ2VvbV9wb2ludCgpKw0KICAgICAgIyBGaW5hbCBsZWFybmVyIGZyb20gdHJhaW5pbmcgZGF0YQ0KICAgICAgZ2VvbV9saW5lKGFlcyh4ID0geCwgeSA9IHZhbHVlLCBncm91cCA9IGxlYXJuZXIsIGNvbG9yID1sZWFybmVyKSwgZGF0YSA9IGZpbmFsX2xlYXJuZXIgLCBjb2xvciA9ICdmaXJlYnJpY2sxJyxzaXplID0gMikgICsNCiAgICAgICMgVHJ1ZSB2YWx1ZQ0KICAgICAgZ2VvbV9saW5lKGFlcyh4PXgseT15KSxkYXRhID0gdGliYmxlKHggPSB1LHkgPSBzaW4odSkpLCBjb2xvcj0nYmxhY2snLGxpbmV0eXBlID0gJ2Rhc2hlZCcpKyAjIHRydWUgdmFsdWVzDQogICAgICAjIFByZWRpY3Rpb24gb24gbmV3IGRhdGENCiAgICAgIGdlb21fbGluZShhZXMoeD14LHk9eXApLGRhdGEgPSBuZXdfZGF0YSwgY29sb3I9J2JsdWUnLHNpemUgPSAyLGFscGhhID0gMC41KSsgIyBwcmVkaWN0ZWQgKHRlc3QpIHZhbHVlcw0KICAgICAgZ2VvbV9saW5lKGFlcyh4PXgseT15cCksZGF0YSA9IGRmX3ZhbGlkLCBjb2xvcj0nZ3JlZW4nLHNpemUgPSAyLGFscGhhID0gMC41KSsgI3ZhbGlkYXRpb24gc2V0DQogICAgICB0aGVtZV9taW5pbWFsKCkNCiAgICBwcmludChwbG90MikNCn0NCg0KcnVuYm9vc3QoMC4wNSkNCmBgYA0KICANCiMjIyMjIFEzICANCmBgYHtyfQ0Kdj0wLjA1DQpvdXQgPC0gZGF0YS5mcmFtZSgwLDAsMCwwLDAsMCkNCmNvbG5hbWVzKG91dCkgPC0gYygibWlucyIsICJjcCIsICJtYXhkIiwgInRyYWluIiwgInRlc3QiLCAidmFsaWQiKQ0KDQptaW5zIDwtIDEwOjMwDQpjcCA8LSBzZXEoMC4wMSwgMC4xLCAwLjAxKQ0KbWF4ZCA8LSAyMDo0MA0KDQpmb3IgKG0gaW4gbWlucyl7DQogIGZvciAoYyBpbiBjcCl7IA0KICAgIGZvciAobWQgaW4gbWF4ZCl7DQogICAgcm93PTENCiAgICBudW1iZXJfb2Zfa25vdHNfc3BsaXQgPSA2DQogICAgcG9seW5vbWlhbF9kZWdyZWUgPSAyDQogICAgDQogICAgYXNzaWdubWVudCA8LSBzYW1wbGUoMTozLCBzaXplID0gbnJvdyhkZiksIHByb2I9YygwLjcwLCAwLjE1LCAwLjE1KSwgcmVwbGFjZSA9IFRSVUUpDQoNCiAgICBkZl90cmFpbiA8LSBkZlthc3NpZ25tZW50ID09IDEsIF0gDQogICAgZGZfdmFsaWQgPC0gZGZbYXNzaWdubWVudCA9PSAyLCBdDQogICAgZGZfdGVzdCA8LSBkZlthc3NpZ25tZW50ID09IDMsIF0NCiAgICANCiAgICAjIEZpdCByb3VuZCAxDQogICAgZml0PXJwYXJ0KHl+YnMoeCxkZWdyZWU9MixkZj02KSxkYXRhPWRmX3RyYWluLCBjb250cm9sID0gbGlzdCgNCiAgICAgIG1pbnNwbGl0ID0gbSwgbWluYnVja2V0ID0gcm91bmQobS8zKSwgY3AgPSBjLCBtYXhkZXB0aCA9IG1kKSkNCiAgICB5cCA9IHByZWRpY3QoZml0LG5ld2RhdGE9ZGZfdHJhaW4pDQogICAgZGZfdHJhaW4keXIgPSBkZl90cmFpbiR5IC0gdip5cA0KICAgIFlQID0gdip5cA0KICAgIGxpc3Rfb2Zfd2Vha19sZWFybmVycyA9IGxpc3QoZml0KQ0KICAgIA0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgICMjIyMjIEJvb3N0aW5nIHdpdGggU3BsaW5lcyAjIyMjIw0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgIG1lYW5fdnlwID0gbWVhbihZUCkNCiAgICB0PTENCiAgICB3aGlsZShtZWFuX3Z5cCA+IDAuMDAwMSl7DQogICAgICB0PXQrMQ0KICAgICAgIyBGaXQgbGluZWFyIHNwbGluZQ0KICAgICAgZml0ID0gcnBhcnQoeXIgfiBicyh4LCANCiAgICAgICAgICAgICAgICAgICAgICAgZGVncmVlPXBvbHlub21pYWxfZGVncmVlLA0KICAgICAgICAgICAgICAgICAgICAgICBkZj1udW1iZXJfb2Zfa25vdHNfc3BsaXQpLGRhdGE9ZGZfdHJhaW4pIA0KICAgICAgDQogICAgICAjIEdlbmVyYXRlIG5ldyBwcmVkaWN0aW9uDQogICAgICB5cD1wcmVkaWN0KGZpdCxuZXdkYXRhPWRmX3RyYWluKQ0KICAgICAgDQogICAgICAjIFVwZGF0ZSByZXNpZHVhbHMNCiAgICAgIGRmX3RyYWluJHlyPWRmX3RyYWluJHlyIC0gdip5cA0KICAgICAgDQogICAgICAjIEJpbmQgdG8gbmV3IGRhdGEgcG9pbnQNCiAgICAgIFlQID0gY2JpbmQoWVAsdip5cCkNCiAgICAgIA0KICAgICAgIyBTdG9yZSBmaXR0ZWQgbW9kZWwgaW4gbGlzdA0KICAgICAgbGlzdF9vZl93ZWFrX2xlYXJuZXJzW1t0XV0gPSBmaXQNCiAgICAgIG1lYW5fdnlwID0gbWVhbih2KnlwKQ0KICAgIH0NCiAgICBwcmludCh0KQ0KICAgICMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiAgICAjIyMjIyBHZXR0aW5nIHByZWRpY3Rpb25zIGZvciBlYWNoIGJvb3N0ICMjIyMjDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgIGZvciAoaSBpbiAxOnQpew0KICAgICAgIyBDYWxjdWxhdGluZyBwZXJmb3JtYW5jZSBvZiBmaXJzdCBpIHdlYWtfbGVhcm5lcnMNCiAgICAgIA0KICAgICAgIyBTdW1taW5nIHdlYWsgbGVhcm5lciByZXNpZHVhbHMNCiAgICAgIGlmKGk9PTEpe3lwX2kgPSBZUFssMTppXQ0KICAgICAgfWVsc2V7eXBfaT1hcHBseShZUFssMTppXSwxLHN1bSkgIzwtIHN0cm9uZyBsZWFybmVyDQogICAgICB9DQogICAgICANCiAgICAgICMgQmluZHMgbmV3IGNvbHMNCiAgICAgIGNvbF9uYW1lID0gcGFzdGUwKCd5cF8nLGkpDQogICAgICBkZl90cmFpbiA9IGRmX3RyYWluICU+JSBiaW5kX2NvbHMoeXA9eXBfaSkNCiAgICB9DQogICAgDQogICAgDQogICAgDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgICMjIyMjIFByZWRpY3Rpbmcgb24gbmV3IGRhdGEsIHRlc3QsIHZhbGlkYXRpb24gc2V0ICMjIyMjDQogICAgIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KICAgIA0KICAgIGZvciAoaSBpbiAxOnQpew0KICAgICAgd2Vha19sZWFybmVyX2kgPSBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW2ldXQ0KICAgICAgDQogICAgICBpZiAoaT09MSl7cHJlZCA9IHYqcHJlZGljdCh3ZWFrX2xlYXJuZXJfaSxkZl92YWxpZCl9DQogICAgICBlbHNle3ByZWQgPXByZWQgKyB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksZGZfdmFsaWQpfQ0KICAgICAgDQogICAgICBpZihpPT10KXsNCiAgICAgICAgZGZfdmFsaWQgPSBkZl92YWxpZCAlPiUgYmluZF9jb2xzKHlwPXByZWQpDQogICAgICB9DQogICAgfQ0KICAgIA0KICAgIGZvciAoaSBpbiAxOnQpew0KICAgICAgd2Vha19sZWFybmVyX2kgPSBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW2ldXQ0KICAgICAgDQogICAgICBpZiAoaT09MSl7cHJlZCA9IHYqcHJlZGljdCh3ZWFrX2xlYXJuZXJfaSxkZl90ZXN0KX0NCiAgICAgIGVsc2V7cHJlZCA9cHJlZCArIHYqcHJlZGljdCh3ZWFrX2xlYXJuZXJfaSxkZl90ZXN0KX0NCiAgICAgIA0KICAgICAgaWYoaT09dCl7DQogICAgICAgIGRmX3Rlc3QgPSBkZl90ZXN0ICU+JSBiaW5kX2NvbHMoeXA9cHJlZCkNCiAgICAgIH0NCiAgICB9DQogICAgDQogICAgbmV3X2RhdGEgPSB0aWJibGUoeCA9IHNhbXBsZShzZXEoMCw0KjMsMC4wMDEpLHNpemUgPSAxMDAscmVwbGFjZSA9IFQpKQ0KICAgIA0KICAgIGZvciAoaSBpbiAxOnQpew0KICAgICAgd2Vha19sZWFybmVyX2kgPSBsaXN0X29mX3dlYWtfbGVhcm5lcnNbW2ldXQ0KICAgICAgDQogICAgICBpZiAoaT09MSl7cHJlZCA9IHYqcHJlZGljdCh3ZWFrX2xlYXJuZXJfaSxuZXdfZGF0YSl9DQogICAgICBlbHNle3ByZWQgPXByZWQgKyB2KnByZWRpY3Qod2Vha19sZWFybmVyX2ksbmV3X2RhdGEpfQ0KICAgICAgDQogICAgICBpZihpPT10KXsNCiAgICAgICAgbmV3X2RhdGEgPSBuZXdfZGF0YSAlPiUgYmluZF9jb2xzKHlwPXByZWQpDQogICAgICB9DQogICAgfQ0KICAgIA0KICAgIG91dFtyb3csXSA8LSBjKG0sIGMsIG1kLCBSTVNFKGRmX3RyYWluJHlwLCBkZl90cmFpbiR5KSwgUk1TRShkZl90ZXN0JHlwLCBkZl90ZXN0JHkpLCBSTVNFKGRmX3ZhbGlkJHlwLCBkZl92YWxpZCR5KSkNCiAgICByb3c9cm93KzENCiAgICB9DQogIH0NCn0NCg0KYGBgDQoNCiAgDQojIyMjIFBhcnQgMiAgDQojIyMgUXVlc3Rpb24gMiAtIFRTTkUgIA0KIyMjIyBQYXJ0IDEgIA0KIyMjIyMgQSAgDQpJbiBtb3N0IHJlc3BlY3RzLCB0aGUgZGlzdGFuY2UgYmV0d2VlbiBwb2ludHMgaW4gdFNORSBkb2VzIG5vdCBtYXR0ZXIsIGJ1dCBpbiBhIGZldyBjYXNlcyBpdCBjYW4gYmUgbWVhbmluZ2Z1bC4gVGhlIGRpc3RhbmNlIGlzIGEgbG93IGRpbWVuc2lvbmFsICgyRCkgcmVwcmVzZW50YXRpb24gb2YgcG9pbnRzIHRoYXQgaW5pdGlhbGx5IGV4aXN0IGluIGEgaGlnaGVyIGRpbWVuc2lvbmFsIHNwYWNlLCBhbmQgZG9lcyByZWZsZWN0IGEgdHJhbnNmb3JtYXRpb24gb2YgdGhlc2UgcG9pbnRzLiBIb3dldmVyLCB0U05FIGhhcyBhIHRlbmRlbmN5IHRvIGV4cGFuZCBjbHVzdGVycyB0aGF0IGFyZSBpbml0aWFsbHkgZGVuc2UsIHdoaWxlIGNvbnRyYWN0aW5nIGNsdXN0ZXJzIHRoYXQgYXJlIGluaXRpYWxseSBleHBhbnNpdmUuIEFzIGEgcmVzdWx0LCBkaXN0YW5jZXMgYmV0d2VlbiBwb2ludHMgaW4gYSBjbHVzdGVyIGFyZSBtZWFuaW5nbGVzcywgYmVjYXVzZSB0aGV5IHJlZmxlY3QgYSBub3Rpb24gb2YgcmVnaW9uYWwgYW5kIGdsb2JhbCBkaXN0YW5jZXMgZGVwZW5kaW5nIG9uIHRoZSBsZXZlbCBvZiBwZXJwbGV4aXR5IGFwcGxpZWQuIERpc3RhbmNlcyBiZXR3ZWVuIGNsdXN0ZXJzIHRlbmQgdG8gYmUgbW9yZSBtZWFuaW5nZnVsIGF0IGhpZ2hlciBsZXZlbHMgb2YgcGVycGxleGl0eSwgYmVjYXVzZSBoaWdoIGxldmVscyBvZiBwZXJwbGV4aXR5IGJldHRlciBwcmVzZXJ2ZSBnbG9iYWwgZGlzdGFuY2VzIGJldHdlZW4gY2x1c3RlcnMuICAgIA0KICANCiMjIyMjIEIgIA0KUGVycGxleGl0eSBpcyBhIHZhbHVlIHRoYXQgdXN1YWxseSByYW5nZXMgYmV0d2VlbiA1IGFuZCA1MCBhbmQgcmVmZXJzIHRvIHRoZSBiYWxhbmNlIGJldHdlZW4gbG9jYWwgYW5kIGdsb2JhbCBkaWZmZXJlbmNlcyBpbiB0aGUgZGF0YSwgc29tZXdoYXQgbGlrZSBzZXR0aW5nIHRoZSBudW1iZXIgb2YgbmVhcmVzdCBuZWlnaGJvcnMgd2UgY2FuIGV4cGVjdCBlYWNoIHBvaW50IHRvIGhhdmUuIExvdyBsZXZlbHMgb2YgcGVycGxleGl0eSBlbXBoYXNpemUgbG9jYWwgdmFyaWF0aW9ucywgd2hpbGUgaGlnaCBsZXZlbHMgb2YgcGVycGxleGl0eSBlbXBoYXNpemUgZGlmZmVyZW5jZXMgYmV0d2VlbiBsYXJnZXIgY2x1c3RlcnMgb2YgZGF0YS4gVGhlIHBhcGVyIHJlY2NvbW1lbmRzIGV4YW1pbmluZyBwbG90cyBvZiBhIGZldyBkaWZmZXJlbnQgcGVycGxleGl0eSB2YWx1ZXMgZm9yIGEgZ2l2ZW4gc2V0IG9mIGRhdGEsIGFuZCBtYWtpbmcgc3VyZSB0aGF0IHRoZSBwZXJwbGV4aXR5IHZhbHVlIGlzIHNtYWxsZXIgdGhhbiB0aGUgbnVtYmVyIG9mIHBvaW50cywgb3RoZXJ3aXNlIHdlIHJpc2sgdW5leHBlY3RlZCBiZWhhdmlvciBmcm9tIHRoZSBhbGdvcml0aG0uICANCiAgDQojIyMjIyBDICANClRoZSBudW1iZXIgb2Ygc3RlcHMgaXMgaW1wb3J0YW50IGluIGVuc3VyaW5nIHRoYXQgdGhlIHJlcHJlc2VudGF0aW9uIGlzIHN0YWJsZS4gVGhlIHBhcGVyIHN0YXRlcyB0aGF0IHRoZXJlIGlzIG5vIG9uZSBudW1iZXIgb2Ygc3RlcHMgdGhhdCBsZWFkIHRvIHN0YWJpbGl0eSwgYnV0IHRoYXQgdGhlcmUgYXJlIHNvbWUgd2FybmluZyBzaWducyB0aGF0IHRoZSByZXByZXNlbnRhdGlvbiBpcyB1bnN0YWJsZS4gRm9yIG9uZSwgaWYgeW91IHNlZSBzZWUgcG9pbnRsaWtlIG9yIHBpbmNoZWQgc2hhcGVzIGFzIHRoZSBjbHVzdGVycywgaXQgaXMgcG9zc2libGUgdGhhdCBub3QgZW5vdWdoIHN0ZXBzIGhhdmUgYmVlbiBydW4gdG8gYWNoaWV2ZSBjb252ZXJnZW5jZS4gIA0KICANCiMjIyMjIEQgIA0KSW4gb3JkZXIgdG8gdW5jb3ZlciB0b3BvbG9naWNhbCBpbmZvcm1hdGlvbiBpbiBhbiBlbWJlZGRpbmcgbGlrZSB0U05FLCB3ZSBtYXkgbmVlZCB0byBtYWtlIG11bHRpcGxlIHBsb3RzIGF0IGRpZmZlcmVudCBwZXJwbGV4aXR5IGxldmVscy4gVGhpcyBpcyBiZWNhdXNlIGRlcGVuZGluZyBvbiB0aGUgbnVtYmVyIG9mIHBvaW50cyBhbmQgdGhlIGRlbnNpdHkgb2YgbG9jYWwgYW5kIGdsb2JhbCBjbHVzdGVycywgYSBkaWZmZXJlbnQgcGVycGxleGl0eSB2YWx1ZSBtYXkgYmUgbmVlZGVkIHRvIHVuY292ZXIgcGF0dGVybnMgaW4gdGhlIG9yaWdpbmFsIGRhdGEuIFByb2R1Y2luZyBvbmx5IG9uZSBncmFwaCBhdCBhIHNwZWNpZmljIHBlcnBsZXhpdHkgbWF5IGxlYWQgdXMgdG8gbWFrZSBmYWxzZSBjb25jbHVzaW9ucyBhYm91dCB0aGUgbmF0dXJlIG9mIHRoZSBoaWdoZXIgZGltZW5zaW9uYWwgZGF0YSwgcGFydGljdWxhcmx5IHdoZW4gd2UgYXJlIHVuYWJsZSB0byBncmFwaCBpdCwgb3Iga25vdyBleGFjdGx5IGhvdyBpdCBpbmhhYml0cyBpdHMgaGlnaGVyIGRpbWVuc2lvbmFsIHNwYWNlLiAgDQogIA0KIyMjIyBQYXJ0IDINCmBgYHtyfQ0KbGlicmFyeSh0aWR5dmVyc2UpDQpsaWJyYXJ5KFJ0c25lKQ0KbGlicmFyeShSQ29sb3JCcmV3ZXIpDQoNCiMgR2V0IE1OSVNUIGRhdGENCm1uaXN0X3JhdyA8LSByZWFkX2NzdigiaHR0cHM6Ly9wanJlZGRpZS5jb20vbWVkaWEvZmlsZXMvbW5pc3RfdHJhaW4uY3N2IiwgY29sX25hbWVzID0gRkFMU0UpDQoNCiMgV2hhdCBpcyB0aGUgZGltZW5zaW9uIG9mIHRoZSBkYXRhIHNldA0KZGltKG1uaXN0X3JhdykgIyBmaXJzdCBjb2x1bW4gaXMgdGhlIHZhbHVlLCB0aGUgcmVzdCBhcmUgdGhlIHBpeGVscw0KDQojIFJlYXJyYW5naW5nIHRoZSBkYXRhDQpwaXhlbHNfZ2F0aGVyZWQgPC0gbW5pc3RfcmF3ICU+JSBoZWFkKDEwMDAwKSAlPiUNCiAgcmVuYW1lKGxhYmVsID0gWDEpICU+JQ0KICBtdXRhdGUoaW5zdGFuY2UgPSByb3dfbnVtYmVyKCkpICU+JQ0KICBnYXRoZXIocGl4ZWwsIHZhbHVlLCAtbGFiZWwsIC1pbnN0YW5jZSkgJT4lDQogIGV4dHJhY3QocGl4ZWwsICJwaXhlbCIsICIoXFxkKykiLCBjb252ZXJ0ID0gVFJVRSkgJT4lDQogIG11dGF0ZShwaXhlbCA9IHBpeGVsIC0gMiwNCiAgICAgICAgIHggPSBwaXhlbCAlJSAyOCwNCiAgICAgICAgIHkgPSAyOCAtIHBpeGVsICUvJSAyOCkNCg0KZmlyc3RfMTBrX3NhbXBsZXMgPSAgbW5pc3RfcmF3WzE6MTAwMDAsLTFdICMlPiUgYXMubWF0cml4KCkNCmZpcnN0XzEwa19zYW1wbGVzX2xhYmVscyA9ICBtbmlzdF9yYXdbMToxMDAwMCwxXSAlPiUgdW5saXN0KHVzZS5uYW1lcz1GKQ0KY29sb3JzID0gYnJld2VyLnBhbCgxMCwgJ1NwZWN0cmFsJykNCg0KIyBWaXN1YWxpemluZyB0aGUgZGF0YQ0KdGhlbWVfc2V0KHRoZW1lX2xpZ2h0KCkpDQpwaXhlbHNfZ2F0aGVyZWQgJT4lDQogIGZpbHRlcihpbnN0YW5jZSA8PSAxMikgJT4lDQogIGdncGxvdChhZXMoeCwgeSwgZmlsbCA9IHZhbHVlKSkgKw0KICBnZW9tX3RpbGUoKSArDQogIGZhY2V0X2dyaWQobGFiZWx+IGluc3RhbmNlICkNCmBgYA0KICANCiMjIyMjIFBhcnQgQSAgDQpgYGB7cn0NCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMjIyMjIFZpc3VhbGl6aW5nIHRoZSBQQ0EgZGVjb21wb3NpdGlvbiAgIyMjIyMNCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCnBjYSA9IHByaW5jb21wKGZpcnN0XzEwa19zYW1wbGVzKSRzY29yZXNbLDE6Ml0NCnBjYV9wbG90ID0gdGliYmxlKHggPSBwY2FbLDFdLCB5ID1wY2FbLDJdLCBsYWJlbHMgPSBhcy5jaGFyYWN0ZXIoZmlyc3RfMTBrX3NhbXBsZXNfbGFiZWxzKSkNCmdncGxvdChhZXMoeCA9IHgsIHk9eSxsYWJlbCA9IGxhYmVscywgY29sb3IgPSBsYWJlbHMpLCBkYXRhID0gcGNhX3Bsb3QpICsgZ2VvbV90ZXh0KCkgKyANCiAgeGxhYignUENBIGNvbXBvbmVudCAxJykgK3lsYWIoJ1BDQSBjb21wb25lbnQgMicpDQpgYGANCiAgDQojIyMjIyBQYXJ0IEIgIA0KYGBge3J9DQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQojIyMjIyAgICAgUnVubmluZyB0aGUgVFNORSBlbWViZGRpbmcgICAgICMjIyMjDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQplbWJlZGRpbmcgPSBSdHNuZShYID0gZmlyc3RfMTBrX3NhbXBsZXMsIGRpbXMgPSAyLCANCiAgICAgICAgICAgICAgICAgIHBlcnBsZXhpdHkgPSA1LCANCiAgICAgICAgICAgICAgICAgIHRoZXRhID0gMC41LCANCiAgICAgICAgICAgICAgICAgIGV0YSA9IDIwMCwNCiAgICAgICAgICAgICAgICAgIHBjYSA9IFRSVUUsIHZlcmJvc2UgPSBUUlVFLCANCiAgICAgICAgICAgICAgICAgIG1heF9pdGVyID0gNTAwKQ0KDQojIFZpc3VhbGl6aW5nIFRTTkUgb3V0cHV0DQplbWJlZGRpbmdfcGxvdCA9IHRpYmJsZSh4ID0gZW1iZWRkaW5nJFlbLDFdLCB5ID0gZW1iZWRkaW5nJFlbLDJdLCANCiAgICAgICAgICAgICAgICAgICAgICAgIGxhYmVscyA9IGFzLmNoYXJhY3RlcihmaXJzdF8xMGtfc2FtcGxlc19sYWJlbHMpKQ0KZ2dwbG90KGFlcyh4ID0geCwgeT15LGxhYmVsID0gbGFiZWxzLCBjb2xvciA9IGxhYmVscyksIGRhdGEgPSBlbWJlZGRpbmdfcGxvdCkgKyANCiAgZ2VvbV90ZXh0KCkgK3hsYWIoJ3RTTkUgZGltZW5zaW9uIDEnKSAreWxhYigndFNORSBkaW1lbnNpb24gMiInKQ0KYGBgDQoNCiMjIyMjIFBhcnQgQw0KYGBge3J9DQpwZXJwcyA8LSBjKDUsIDIwLCA2MCwgMTAwLCAxMjUsIDE2MCkNCmZvciAoaSBpbiBwZXJwcyl7DQogIGVtYmVkZGluZyA9IFJ0c25lKFggPSBmaXJzdF8xMGtfc2FtcGxlcywgZGltcyA9IDIsIA0KICAgICAgICAgICAgICAgICAgcGVycGxleGl0eSA9IGksIA0KICAgICAgICAgICAgICAgICAgdGhldGEgPSAwLjUsIA0KICAgICAgICAgICAgICAgICAgZXRhID0gMjAwLA0KICAgICAgICAgICAgICAgICAgcGNhID0gVFJVRSwgdmVyYm9zZSA9IFRSVUUsIA0KICAgICAgICAgICAgICAgICAgbWF4X2l0ZXIgPSA1MDApDQoNCiAgIyBWaXN1YWxpemluZyBUU05FIG91dHB1dA0KICBlbWJlZGRpbmdfcGxvdCA9IHRpYmJsZSh4ID0gZW1iZWRkaW5nJFlbLDFdLCB5ID0gZW1iZWRkaW5nJFlbLDJdLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgbGFiZWxzID0gYXMuY2hhcmFjdGVyKGZpcnN0XzEwa19zYW1wbGVzX2xhYmVscykpDQogIHBsb3R2YXIgPC0gZ2dwbG90KGFlcyh4ID0geCwgeT15LGxhYmVsID0gbGFiZWxzLCBjb2xvciA9IGxhYmVscyksIGRhdGEgPSBlbWJlZGRpbmdfcGxvdCkgKyANCiAgICBnZW9tX3RleHQoKSAreGxhYigndFNORSBkaW1lbnNpb24gMScpICt5bGFiKCd0U05FIGRpbWVuc2lvbiAyIicpDQogIHByaW50KHBsb3R2YXIpDQp9DQpgYGANCkl0IGxvb2tzIGxpa2UgYSBwZXJwbGV4aXR5IG9mIDUgd2FzIHBlcmhhcGVzIHRoZSBiZXN0IGF0IHNlcGFyYXRpbmcgdGhlIHZhcmlvdXMgbnVtYmVycyBlZmZlY3RpdmVseS4gSGlnaGVyIHBlcnBsZXhpdHkgaXRlcmF0aW9ucyBmb3VuZCBtb3JlIGhpZ2gtbGV2ZWwgZGlmZmVyZW5jZXMgd2l0aGluIHRoZSBudW1iZXIgc2V0cyAtIGZvciBleGFtcGxlIGF0IHBlcnBsZXhpdHkgMTAwIGEgZ3JvdXAgb2YgdHdvcyBzcGxpdCBvZmYgZnJvbSB0aGUgbWFpbiBjbHVzdGVyIG9mIHR3b3MgYW5kIG1vdmVzIGJldHdlZW4gdGhlIG9uZXMgYW5kIGZvdXJzLCB3aGljaCBtaWdodCBiZSBiZWNhdXNlIHRob3NlIHBhcnRpY3VsYXIgdHdvcyBsb29rIHNvbWV3aGF0IGRpZmZlcmVudCB0byB0aGUgcmVzdCBvZiB0aGUgY2x1c3Rlci4gQWxzbywgd2l0aCBpbmNyZWFzZWQgcGVycGxleGl0eSB0aGVyZSBpcyBtb3JlIG1pbmdsaW5nIGJldHdlZW4gdGhlIGZvdXIgYW5kIHNldmVuIGNsdXN0ZXJzLCB3aXRoIHRoZSBzZXZlbnMgYXBwZWFyaW5nIHRvIHNwbGl0IHRoZSBmb3VyIGNsdXN0ZXIgaW4gaGFsZi4gSW4gYW55IGNhc2UsIGF0IGFsbCBwZXJwbGV4aXRpZXMgbW9zdCBvZiB0aGUgbnVtYmVycyBhcHBlYXIgdG8gYmUgZ3JvdXBlZCB0b2dldGhlciBsb2dpY2FsbHkuIFNpbmNlIHBlcnBsZXhpdHkgaXMgc29tZXdoYXQgc2ltaWxhciB0byBuZWFyZXN0IG5laWdoYm9ycyBpdCBtYWtlcyBpbnR1aXRpdmUgc2Vuc2UgdG8gbWUgdGhhdCA1IHdhcyB0aGUgbW9zdCBlZmZlY3RpdmUgdmFsdWUgb2YgdGhvc2UgdGVzdGVkIGFib3ZlIGJlY2F1c2UgaXQgaXMgY2xvc2VzdCB0byB0aGUgbnVtYmVyIG9mIGFjdHVhbCB2YWx1ZXMgcHJlc2VudCBpbiB0aGUgZGF0YSAtIDEwLiANCiAgDQojIyMjIyBQYXJ0IEQNCmBgYHtyfQ0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyMjIyMgICAgIFJ1bm5pbmcgdGhlIFRTTkUgZW1lYmRkaW5nICAgICAjIyMjIw0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KZW1iZWRkaW5nID0gUnRzbmUoWCA9IGZpcnN0XzEwa19zYW1wbGVzLCBkaW1zID0gMiwgDQogICAgICAgICAgICAgICAgICBwZXJwbGV4aXR5ID0gMSwgDQogICAgICAgICAgICAgICAgICB0aGV0YSA9IDAuNSwgDQogICAgICAgICAgICAgICAgICBldGEgPSAyMDAsDQogICAgICAgICAgICAgICAgICBwY2EgPSBUUlVFLCB2ZXJib3NlID0gVFJVRSwgDQogICAgICAgICAgICAgICAgICBtYXhfaXRlciA9IDUwMCkNCg0KIyBWaXN1YWxpemluZyBUU05FIG91dHB1dA0KZW1iZWRkaW5nX3Bsb3QgPSB0aWJibGUoeCA9IGVtYmVkZGluZyRZWywxXSwgeSA9IGVtYmVkZGluZyRZWywyXSwgDQogICAgICAgICAgICAgICAgICAgICAgICBsYWJlbHMgPSBhcy5jaGFyYWN0ZXIoZmlyc3RfMTBrX3NhbXBsZXNfbGFiZWxzKSkNCmdncGxvdChhZXMoeCA9IHgsIHk9eSxsYWJlbCA9IGxhYmVscywgY29sb3IgPSBsYWJlbHMpLCBkYXRhID0gZW1iZWRkaW5nX3Bsb3QpICsgDQogIGdlb21fdGV4dCgpICt4bGFiKCd0U05FIGRpbWVuc2lvbiAxJykgK3lsYWIoJ3RTTkUgZGltZW5zaW9uIDIiJykNCmBgYA0KVGhlIGRpc3RyaWJ1dGlvbiBsb29rcyBjb21wbGV0ZWx5IHJhbmRvbSB3aXRoIGFuIGV2ZW4gc3ByZWFkIG9mIHZhcmlvdXMgdmFsdWVzIGFjcm9zcyBib3RoIGRpbWVuc2lvbnMuIFRoaXMgaXMgYmVjYXVzZSBzaW5jZSB0aGUgcGVycGxleGl0eSBpcyBzZXQgYXQgMSwgdGhlIGRhdGEgaGFzIGJlZW4gbG9vc2VseSBvcmdhbml6ZWQgaW50byBvbmUgY2x1c3RlciB3aXRoIGVhY2ggcG9pbnQgaGF2aW5nIGFib3V0IG9uZSBjbG9zZSBuZWlnaGJvci4gVGhpcyBsaWtlbHkgbGVkIHRvIHRoZXJlIGJlaW5nIGV4dHJlbWUgZW1waGFzaXMgb24gbG9jYWwgdmFyaWF0aW9uIHRvIHRoZSBkZWdyZWUgdGhhdCB0aGVyZSBhcmUgb25seSBhIGZldyBncm91cHMgb2YgYSBmZXcgbnVtYmVycyBzbGlnaHRseSBjbHVzdGVyZWQgdG9nZXRoZXIgaW4gdGhlIGNlbnRlciBvZiB0aGUgY2lyY2xlLiAgDQogIA0KIyMjIyMgUGFydCBFICANCkkgdGhpbmsgaXQgaXMgbGlrZWx5IHRoYXQgd2hlbiB0aGUgcGVycGxleGl0eSBpcyBzZXQgdG8gNTAwMCB0aGVyZSB3b3VsZCBiZSBhIHBsb3Qgc29td2hhdCBzaW1pbGFyIHRvIHRoZSBhYm92ZSBiZWNhdXNlIHRoZSBwZXJwbGV4aXR5IHdvdWxkIGJlIGF0IGhhbGYgdGhlIG51bWJlciBvZiBwb2ludHMgaW4gdGhlIGRhdGFzZXQuIFdpdGggZXh0cmVtZWx5IGhpZ2ggZW1waGFzaXMgb24gZ2xvYmFsIHZhcmlhdGlvbnMgYmV0d2VlbiB0aGUgZGF0YSwgdGhlcmUgd291bGQgYmUgbXVjaCBtb3JlIGRpZmZ1c2lvbiBhY3Jvc3MgdGhlIGxhYmVscyBzaW5jZSB0aGVyZSB3b3VsZCBlZmZlY3RpdmVseSBiZSBhYm91dCA1MDAwICJjbG9zZSBuZWlnaGJvcnMiIHRvIGVhY2ggcG9pbnQuICANCg0KIyMjIyMgUGFydCBGICAgDQpgYGB7cn0NCnBlcnBzIDwtIGMoNSwgMjAsIDYwLCAxMDAsIDEyNSwgMTYwKQ0KaXRlcmNvc3RzIDwtIG51bWVyaWMoNikNCg0KbiA8LSAxDQpmb3IgKGkgaW4gcGVycHMpew0KICBlbWJlZGRpbmcgPSBSdHNuZShYID0gZmlyc3RfMTBrX3NhbXBsZXMsIGRpbXMgPSAyLCANCiAgICAgICAgICAgICAgICAgIHBlcnBsZXhpdHkgPSBpLCANCiAgICAgICAgICAgICAgICAgIHRoZXRhID0gMC41LCANCiAgICAgICAgICAgICAgICAgIGV0YSA9IDIwMCwNCiAgICAgICAgICAgICAgICAgIHBjYSA9IFRSVUUsIHZlcmJvc2UgPSBUUlVFLCANCiAgICAgICAgICAgICAgICAgIG1heF9pdGVyID0gNTAwKQ0KICBpdGVyY29zdHNbbl0gPC0gZW1iZWRkaW5nJGl0ZXJjb3N0c1tsZW5ndGgoZW1iZWRkaW5nJGl0ZXJjb3N0cyldDQogIA0KICBuIDwtIG4rMQ0KfQ0KDQpwbG90KHBlcnBzLCBpdGVyY29zdHMpDQpgYGANCkJhc2VkIG9uIHRoaXMgZ3JhcGggdGhlIG9wdGltYWwgdmFsdWUgYXBwZWFycyB0byBiZSBhIHBlcnBsZXhpdHkgb2YgMTYwLCBiZWNhdXNlIGl0IG1pbmltaXplcyB0aGUgaXRlcl9jb3N0cyAoS0wgZGl2ZXJnZW5jZSkgbW9yZSB0aGFuIGFueSBvdGhlciBwZXJwbGV4aXR5IHZhbHVlLiBJbnR1aXRpdmVseSBiYXNlZCBvbiB0aGUgZ3JhcGhzIGFib3ZlLCBJIGRvbid0IHRoaW5rIHRoaXMgbWFrZXMgc2Vuc2UsIGJ1dCB0aGF0IGNvdWxkIGJlIHdoeSB0aGUgYXJ0aWNsZSByZWNvbW1lbmRzIHBsb3R0aW5nIGF0IG11bHRpcGxlIHBlcnBsZXhpdGllcyByYXRoZXIgdGhhbiBzZWxlY3RpbmcgYSBwZXJwbGV4aXR5IGJhc2VkIG9uIGEgbnVtZXJpYyBvdXRwdXQgbGlrZSB0aGUgbWluaW1pemF0aW9uIG9mIHRoZSBLTC1kaXZlcmdlbmNlLCB3aGljaCBJIHRoaW5rIGluIHRoaXMgY2FzZSBtaWdodCBiZSBvdmVyZml0dGluZyBhbmQgZm9jdXNpbmcgb24gbW9yZSBnbG9iYWwgdmFyaWF0aW9ucyBpbiB0aGUgZGF0YS4gIA0KDQojIyMjIyBQYXJ0IEcNCmBgYHtyfQ0KZXRhcyA8LSBjKDEwLCAxMDAsIDIwMCkNCmZvciAoaSBpbiBldGFzKXsNCiAgZW1iZWRkaW5nID0gUnRzbmUoWCA9IGZpcnN0XzEwa19zYW1wbGVzLCBkaW1zID0gMiwgDQogICAgICAgICAgICAgICAgICBwZXJwbGV4aXR5ID0gMTYwLCANCiAgICAgICAgICAgICAgICAgIHRoZXRhID0gMC41LCANCiAgICAgICAgICAgICAgICAgIGV0YSA9IGksDQogICAgICAgICAgICAgICAgICBwY2EgPSBUUlVFLCB2ZXJib3NlID0gVFJVRSwgDQogICAgICAgICAgICAgICAgICBtYXhfaXRlciA9IDUwMCkNCg0KICAjIFZpc3VhbGl6aW5nIFRTTkUgb3V0cHV0DQogIGVtYmVkZGluZ19wbG90ID0gdGliYmxlKHggPSBlbWJlZGRpbmckWVssMV0sIHkgPSBlbWJlZGRpbmckWVssMl0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICBsYWJlbHMgPSBhcy5jaGFyYWN0ZXIoZmlyc3RfMTBrX3NhbXBsZXNfbGFiZWxzKSkNCiAgcGxvdHZhciA8LSBnZ3Bsb3QoYWVzKHggPSB4LCB5PXksbGFiZWwgPSBsYWJlbHMsIGNvbG9yID0gbGFiZWxzKSwgZGF0YSA9IGVtYmVkZGluZ19wbG90KSArIA0KICAgIGdlb21fdGV4dCgpICt4bGFiKCd0U05FIGRpbWVuc2lvbiAxJykgK3lsYWIoJ3RTTkUgZGltZW5zaW9uIDIiJykNCiAgcHJpbnQocGxvdHZhcikNCn0NCmBgYA0KSXQgbG9va3MgbGlrZSBsb3dlciBsZWFybmluZyByYXRlcyByZXN1bHQgaW4gaW5jcmVhc2VkIGJsZWVkaW5nIG92ZXIgYmV0d2VlbiBjbHVzdGVycyAtIHByb2JhYmx5IGJlY2F1c2UgdGhlIGFsZ29yaXRobSBkb2Vzbid0IGFjaGlldmUgYXMgbXVjaCBjb252ZXJnZW5jZSB3aXRoIGxvd2VyIGxlYXJuaW5nIHJhdGVzIGFuZCB0aGUgc2FtZSBudW1iZXIgb2YgaXRlcmF0aW9ucy4gVGhlIG91dHB1dCBhbHNvIHNob3dzIHRoYXQgdGhlIGl0ZXJfY29zdHMgKEtMIGRpdmVyZ2VuY2UpIGlzIGhpZ2hlciBmb3IgdGhlIGxvd2VyIGxlYXJuaW5nIHJhdGVzLiAgDQo=